Tool

dvanmeter's picture
tool
Reads:

6130

Score:
5
5
3
 
Comments:

1

FixZen

Author Info

24 February 2008 - 12:55am
Submitted by: dvanmeter

(View Disclaimer)

license: 
Free for use

FixZen wil reregsiter systems on your network with ZENworks by running a wmi process that executes zwsreg -unreg and then zwsreg on a remote system. Just type in the Host name or IP address. The tool is handy for fixing machines that have had their names changed and are not updated in Zenworks.

The script is bundled into an exe but the source contents looks as such:

 '-------------------------------------------------------------------------------------------------------------------------------------------
' Fix unregistered Zen Machines
' Author Daniel VanMeter

strExe = "cmd.exe /C zwsreg -unreg && zwsreg"
strComputer = (InputBox("The FixZen utility reregisters a remote client with a Novell Zenwork Server by using the zwsreg command." & vbNewline & " " & vbNewline & "Requirements:" & vbNewline & "1. Access to WMI on remote system." & vbNewline & "2. You must be logged in locally with an account that has admin rights on the remote system." & vbNewline & "3: Zenworks is installed on the remote client." & vbNewline & " " & vbNewline & "Please enter a computer name or IP below:" ,_
"FixZen Tool: Created by Daniel VanMeter"))

If strComputer = "" Then
   wscript.quit(1)
End If

' Connect to WMI
set objWMIService = getobject("winmgmts://"_
& strComputer & "/root/cimv2") 
' Obtain the Win32_Process class of object.
Set objProcess = objWMIService.Get("Win32_Process")
Set objProgram = objProcess.Methods_( _
"Create").InParameters.SpawnInstance_
objProgram.CommandLine = strExe 

'Execute the program now at the command line.
Set strShell = objWMIService.ExecMethod( _
"Win32_Process", "Create", objProgram) 

WScript.echo "FixZen successfully run on " & strcomputer & ". The computer name may take up to a minute to appear."
WSCript.Quit 

'-------------------------------------------------------------------------------------------------------------------------------------------

AttachmentSize
FixZen_vbs.zip782 bytes
FixZen_exe.zip53 KB

Disclaimer: As with everything else at Cool Solutions, this content is definitely not supported by Novell (so don't even think of calling Support if you try something and it blows up).

It was contributed by a community member and is published "as is." It seems to have worked for at least one person, and might work for you. But please be sure to test, test, test before you do anything drastic with it.




User Comments

DarrellEddy's picture

How about making this work on a group of PC's

Submitted by DarrellEddy on 29 February 2008 - 5:02pm.

Is there a way to make this work for a group of PC's like a range of IP addresses?

© 2012 Novell