there is a way to accomplish this. when you tupe the computername in the inputfield of the wizard, a script checks after each change (thus after each character typed into the field) wether the computername has invalid characters. the name of the script is DeployWiz_Validation.vbs, and is located in the Scripts folder. In the script, search for the function ValidateComputerName. look on the internet for the right vbscript code which checks the existance of your desired computername in AD. Past that code in the function named above. Ofcource you have to modify it a bit to make is work. Edit: When you do it like i describted above, each time you type a character into the inputfield, the scripts checks AD for the computeraccount. So if you have a 20 character computername, AD is checked 20 times rapidly. This could bring some performace issues. Good luck. |