Chris, I have been there my self. Removing the Novell client 32 was the last and final step for our Novell migration.I handled it a little bit different, I used a automation program called AutoIt, that answered all of the questions for me when i ran Novell's UNC32.exe program.
Here is the autoit script that I used.
code:
run, \\\\oshmans2\\unc32\\unc32.exe
repeat,
ifwinactive, NetWare,, gosub, nwcu
;ifwinactive, Insert Disk,, gosub, insert_disk
ifwinactive, Version Conflict,, gosub, version_conflict
endrepeat
exit
nwcu:
send, {enter}
return
insert_disk:
return
version_conflict:
send, {enter}
return
But something did happen towards the end, the UNC32 stopped working and for a handful of people we had to remove the client32 by hand, here are our notes.
quote:
1- Go to Start | Run | type in REGEDIT.EXE.
2- Delete the HKEY_LOCAL_MACHINE\Software\Novell key (the entire Novell key).
3- Delete the HKEY_LOCAL_MACHINE\Network\Novell key (the entire Novell key).
4- Delete the HKEY_CURRENT_USER\Software\Netware (the entire Netware key).
5- Go to Start | Programs | Windows Explorer.
6- Delete the C:\NOVELL\CLIENT32 directory (the entire Novell directory).
You could most likely script this but I never did.
Bryce