Most of the time you can use xcopy and for more advance copying you can get robocopy. It is free from Microsoft but a little bit different to use. You can find it in Windows Server 2003 Resource Kit Tools. I personally like to use xxcopy. It contains the same flags as xcopy but has more advanced functions. About 160 different flags which you can set. It is free for personal or none commercial use.
You can download it here:
http://www.xxcopy.com/
Example (Copy all new files and folders with the NTFS permissions on f:):
xxcopy *.* f: /H /E /R /X /D
admin on October 28th 2009 in Windows
Today I want to introduce to you a great tool with which you can make disk images during the time your OS is running. It is just about 250 KB big and you don’t even need to install it. It’s a dream. It belongs to all administrators pocket.
The name of the program is snapshot and can be downloaded here:
http://www.drivesnapshot.de/
admin on October 28th 2009 in IT, Windows, Windows Server
I just recently got a new place and I wasn’t sure which furniture I should move and if I would have enough space. After searching the internet for a while I found this nice little application. Sweet Home 3D. It is open source and is written in Java so you can actually use it on Windows, Mac or Linux. It is very easy to use and I could in minutes realize what I wanted.
http://www.sweethome3d.eu

admin on October 23rd 2009 in Life
If you believe or not I we still use Windows 2000 Server in our environment and today I faced the famous 128 GByte problem. Windows 2000 until Service Pack 2 just detects maximal 128 Gbyte HD Space. To solve this you need to make changes to the registry.
Go to:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Atapi\Parameters
Create a DWORD key:
EnableBigLba
Set value to:
1
admin on October 23rd 2009 in Windows Server
Run in terminal:
Show all files:
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
Hide it again:
defaults write com.apple.finder AppleShowAllFiles FALSE
killall Finder
admin on October 21st 2009 in MAC
If you setup a SSH Server and put all the traffic trough it on port 80 you could bypass most firewalls.
Setup an SSH Server on port 80 and bind it with following command in terminal:
ssh [username]@[domain/ip/host] -p [portnumber] -L [bindingiplocal]:localhost:[bindingipremote]
example:
ssh root@mist.com -p 80 -L 2222:RemotesComputerLocalIP:3389
3389 is used on the remote computer for RDP (Remote Desktop Connection). To connect to it trough the tunnel you need to connect Remote Desktop with following syntax: 127.0.0.1:2222
admin on October 9th 2009 in Internet, IT
Jus run this command:
rundll32 powrprof.dll,SetSuspendState
admin on October 1st 2009 in Windows