Windows 7 O.S. I need to clear the HardwareID inside the registry for Symantec Endpoint Protection 11. I am using the following script:
@echo on
start /wait smc -stop
reg import "HardwareID.reg"
Del "c:\program files\Common Files\Symantec Shared\HWID\sephwid.xml"
start /wait smc -start
The script gets hung up when it attempts run 'start /wait smc -start'. The other lines of code prior to that work correctly.
Any ideas as to what could be going on with this relatively small and simple script? I am skeptical on the 'start /wait' command because from what I have read online it may not behave as designed. I am not sure why SEP 11 is having issues starting back up.
Thanks.
@echo on
start /wait smc -stop
reg import "HardwareID.reg"
Del "c:\program files\Common Files\Symantec Shared\HWID\sephwid.xml"
start /wait smc -start
The script gets hung up when it attempts run 'start /wait smc -start'. The other lines of code prior to that work correctly.
Any ideas as to what could be going on with this relatively small and simple script? I am skeptical on the 'start /wait' command because from what I have read online it may not behave as designed. I am not sure why SEP 11 is having issues starting back up.
Thanks.