Automation, AWS, Citrix, Cloud, CtxAdmTools, Microsoft, Virtualization, VMware and more...
Wednesday, August 16, 2006
MS: Unattended Install
dotnetfx.exe /q:a /c:"install.exe /qb /l"
Unattended install .NET Framework v1.1 SP1
NDP1.1sp1-KB867460-X86.exe /q
Unattended install Windows Media v9.0
MPSetup.exe /q
Unattended install Windows Media v10.0
MP10Setup.exe /q
Unattended install DirectX 9.0c
Download DirectX 9.0c Redistributable, extract the file (using WinRAR for example) and then
DXSETUP.EXE /silent
Thursday, August 10, 2006
MS: Disable Windows XP SP2 Firewall using GPO
Computer Configuration\Administrative Templates\Network\Network Connections\Windows Firewall\Domain Profile\
Computer Configuration\Administrative Templates\Network\Network Connections\Windows Firewall\Standard Profile\
Windows Firewall: Protect all network connections = Disabled
Wednesday, August 09, 2006
MS: Print Migrator
You can download from here
Sometimes you will get this error:
"WARNING: Kernel Mode drivers (version 2) are blocked on the target machine. Disable Kernel Mode driver blocking and re-run Printer Migrator"
To fix that error:
1) Open Run and type gpedit.msc
2) Open Computer Configuration, Administrative Templates, Printer.
3) On the Right click on the policy labeled "Disallow installation of printers using kernel mode drivers"
4) Set it to disabled.
You may have to reboot, but you should now be able to install Kernel Mode Drivers.
MS: Move DHCP Database
http://support.microsoft.com/kb/325473
How to move a DHCP database from one server to another in Windows NT 4.0 and in Windows 2000
http://support.microsoft.com/kb/130642
Tuesday, August 08, 2006
MS: How to use netsh to configure TCP/IP settings from the Command Prompt
In order to configure TCP/IP settings such as the IP address, Subnet Mask, Default Gateway, DNS and WINS addresses and many other options you can use Netsh.exe.
Netsh.exe is available on Windows 2000, Windows XP and Windows Server 2003.
With Netsh.exe, you can configure the IP address and other TCP/IP related settings. For example:
The following command configures the interface named Local Area Connection with the static IP address 192.168.0.100, the subnet mask of 255.255.255.0, and a default gateway of 192.168.0.1:
netsh interface ip set address name="Local Area Connection" static 192.168.0.100 255.255.255.0 192.168.0.1 1
Netsh.exe can also be used to configure your NIC to automatically obtain an IP address from a DHCP server:
netsh interface ip set address "Local Area Connection" dhcp
You can configure your NIC to dynamically obtain it's DNS settings:
netsh interface ip set dns "Local Area Connection" dhcp
You can configure DNS addresses from the Command Prompt:
netsh interface ip set dns "Local Area Connection" static 192.168.0.200
You can add extra DNS servers using:
netsh interface ip add dns "Local Area Connection" 192.168.0.210
You can configure your NIC to dynamically obtain it's WINS settings:
netsh interface ip set wins "Local Area Connection" dhcp
You can configure WINS addresses from the Command Prompt :
netsh interface ip set wins "Local Area Connection" static 192.168.0.200
If you want you can add extra WINS servers using:
netsh interface ip add wins "Local Area Connection" 192.168.0.210
Example Script to setup a computer:
netsh interface ip set address name="Local Area Connection" static 10.150.0.125 255.255.0.0 10.150.0.254 1
netsh interface ip set dns "Local Area Connection" static 10.150.0.10
netsh interface ip add dns "Local Area Connection" 10.150.0.11
netsh interface ip add dns "Local Area Connection" 10.150.0.12
netsh interface ip set wins "Local Area Connection" static 10.150.0.10
netsh interface ip add wins "Local Area Connection" 10.150.0.11
netsh interface ip add wins "Local Area Connection" 10.150.0.12
Wednesday, August 02, 2006
MS: The version of the Active Directory schema of the source forest is not compatible with the version of Active Directory on this computer
http://support.microsoft.com/?kbid=917385
Tuesday, August 01, 2006
MS: Windows 2003 Migration
Windows NT to Windows 2003
How to configure the Active Directory Migration Tool to migrate user passwords from a Windows NT 4.0 domain to a Windows Server 2003 domain
http://support.microsoft.com/kb/832221/en-us
How to use Active Directory Migration Tool version 2 to migrate from Windows 2000 to Windows Server 2003
http://support.microsoft.com/kb/326480
Windows NT Server 4.0 Upgrade Guide Windows NT Server 4.0 Upgrade Guide
http://www.microsoft.com/windowsserver2003/partners/isvs/ntmigrate.mspx
Migrating from Windows NT Server 4.0 to Windows Server 2003
http://www.microsoft.com/downloads/details.aspx?FamilyID=e92cf6a0-76f0-4e25-8de0-19544062a6e6&DisplayLang=en
Tools and Documentation for Upgrading to Windows Server 2003
http://www.microsoft.com/windowsserver2003/upgrading/nt4/tooldocs
MS: Transfer roles to a Windows Domain Controller
http://support.microsoft.com/kb/255504/en-us
How to view and transfer FSMO roles in Windows Server 2003 / 2008
http://support.microsoft.com/kb/324801