Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Server > Scripting > how do I disjoin a machine to workgroup name

Reply
Thread Tools Display Modes

how do I disjoin a machine to workgroup name

 
 
Joey
Guest
Posts: n/a

 
      05-04-2009
how do I modify the below to join a workgroup name "workgroup" instead of
the domain name?

Set objNetwork = CreateObject("WScript.Network")
strComputer = objNetwork.ComputerName
Set objComputer = GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" &
strComputer & "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer & "'")
strDomain = objComputer.Domain
intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)


 
Reply With Quote
 
 
 
 
Alex K. Angelopoulos
Guest
Posts: n/a

 
      05-05-2009
First, is the computer currently a domain member, not a workgroup member? If
so - and only if so - you first need to use the UnjoinDomainOrWorkgroup the
way you have it.

The second step is to use JoinDomainOrWorkgroup, like this:

objComputer.JoinDomainOrWorkgroup("workgroup")


you have the necessary privileges, don't bother with arguments

"Joey" <> wrote in message
news:eIAv$...
> how do I modify the below to join a workgroup name "workgroup" instead of
> the domain name?
>
> Set objNetwork = CreateObject("WScript.Network")
> strComputer = objNetwork.ComputerName
> Set objComputer = GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\"
> & strComputer & "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer &
> "'")
> strDomain = objComputer.Domain
> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>

 
Reply With Quote
 
Joey
Guest
Posts: n/a

 
      05-06-2009
ok

how do I add a line that will kill all processes ?

Set objNetwork = CreateObject("WScript.Network")
strComputer = objNetwork.ComputerName
Set objComputer = GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" &
strComputer & "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer & "'")
'strDomain = objComputer.Domain
intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
intReturn1 = objComputer.JoinDomainOrWorkgroup("workgroup")


Set OpSysSet = GetObject("winmgmts:{(Shutdown)}!\\.\root\cimv2"). ExecQuery _
("select * from Win32_OperatingSystem where Primary=true")

for each OpSys in OpSysSet
OpSys.Reboot()
next



"Alex K. Angelopoulos" <aka(at)mvps.org> wrote in message
news:%...
> First, is the computer currently a domain member, not a workgroup member?
> If so - and only if so - you first need to use the UnjoinDomainOrWorkgroup
> the way you have it.
>
> The second step is to use JoinDomainOrWorkgroup, like this:
>
> objComputer.JoinDomainOrWorkgroup("workgroup")
>
>
> you have the necessary privileges, don't bother with arguments
>
> "Joey" <> wrote in message
> news:eIAv$...
>> how do I modify the below to join a workgroup name "workgroup" instead of
>> the domain name?
>>
>> Set objNetwork = CreateObject("WScript.Network")
>> strComputer = objNetwork.ComputerName
>> Set objComputer =
>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" & strComputer &
>> "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer & "'")
>> strDomain = objComputer.Domain
>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>>



 
Reply With Quote
 
Alex K. Angelopoulos
Guest
Posts: n/a

 
      05-07-2009
Since you're using the Reboot() method, that will happen automatically. Are
you running into problems with making this work in a specific situation?

"Joey" <> wrote in message
news:...
> ok
>
> how do I add a line that will kill all processes ?
>
> Set objNetwork = CreateObject("WScript.Network")
> strComputer = objNetwork.ComputerName
> Set objComputer = GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\"
> & strComputer & "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer &
> "'")
> 'strDomain = objComputer.Domain
> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
> intReturn1 = objComputer.JoinDomainOrWorkgroup("workgroup")
>
>
> Set OpSysSet = GetObject("winmgmts:{(Shutdown)}!\\.\root\cimv2"). ExecQuery
> _
> ("select * from Win32_OperatingSystem where Primary=true")
>
> for each OpSys in OpSysSet
> OpSys.Reboot()
> next
>
>
>
> "Alex K. Angelopoulos" <aka(at)mvps.org> wrote in message
> news:%...
>> First, is the computer currently a domain member, not a workgroup member?
>> If so - and only if so - you first need to use the
>> UnjoinDomainOrWorkgroup the way you have it.
>>
>> The second step is to use JoinDomainOrWorkgroup, like this:
>>
>> objComputer.JoinDomainOrWorkgroup("workgroup")
>>
>>
>> you have the necessary privileges, don't bother with arguments
>>
>> "Joey" <> wrote in message
>> news:eIAv$...
>>> how do I modify the below to join a workgroup name "workgroup" instead
>>> of the domain name?
>>>
>>> Set objNetwork = CreateObject("WScript.Network")
>>> strComputer = objNetwork.ComputerName
>>> Set objComputer =
>>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" & strComputer &
>>> "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer & "'")
>>> strDomain = objComputer.Domain
>>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>>>

>
>

 
Reply With Quote
 
Joey
Guest
Posts: n/a

 
      05-09-2009
yes after joining the domain, there isa process that keeps hanging and
waiting for a "end now". I want to be able to kill that process and then
reboot

"Alex K. Angelopoulos" <alex(dot) k(dot again)angelopoulos(at)gmail.com>
wrote in message news:...
> Since you're using the Reboot() method, that will happen automatically.
> Are you running into problems with making this work in a specific
> situation?
>
> "Joey" <> wrote in message
> news:...
>> ok
>>
>> how do I add a line that will kill all processes ?
>>
>> Set objNetwork = CreateObject("WScript.Network")
>> strComputer = objNetwork.ComputerName
>> Set objComputer =
>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" & strComputer &
>> "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer & "'")
>> 'strDomain = objComputer.Domain
>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>> intReturn1 = objComputer.JoinDomainOrWorkgroup("workgroup")
>>
>>
>> Set OpSysSet =
>> GetObject("winmgmts:{(Shutdown)}!\\.\root\cimv2"). ExecQuery _
>> ("select * from Win32_OperatingSystem where Primary=true")
>>
>> for each OpSys in OpSysSet
>> OpSys.Reboot()
>> next
>>
>>
>>
>> "Alex K. Angelopoulos" <aka(at)mvps.org> wrote in message
>> news:%...
>>> First, is the computer currently a domain member, not a workgroup
>>> member? If so - and only if so - you first need to use the
>>> UnjoinDomainOrWorkgroup the way you have it.
>>>
>>> The second step is to use JoinDomainOrWorkgroup, like this:
>>>
>>> objComputer.JoinDomainOrWorkgroup("workgroup")
>>>
>>>
>>> you have the necessary privileges, don't bother with arguments
>>>
>>> "Joey" <> wrote in message
>>> news:eIAv$...
>>>> how do I modify the below to join a workgroup name "workgroup" instead
>>>> of the domain name?
>>>>
>>>> Set objNetwork = CreateObject("WScript.Network")
>>>> strComputer = objNetwork.ComputerName
>>>> Set objComputer =
>>>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" & strComputer
>>>> & "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer & "'")
>>>> strDomain = objComputer.Domain
>>>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>>>>

>>
>>



 
Reply With Quote
 
Alex K. Angelopoulos
Guest
Posts: n/a

 
      05-10-2009
Instead of using Win32_OperatingSystem's Reboot() method, you're probably
better off using its Win32Shutdown; this allows you forced shutdown (trying
to kill all processes isn't going to work - it will kill your own script as
well, and some processes won't be touched).

You want to specify restart + forcing, which is a value of 6 if you check
the online documentation for the method:

http://msdn.microsoft.com/en-us/libr...8VS.85%29.aspx

so use it like this:
OpSys.Win32Shutdown( 6, 0)


"Joey" <> wrote in message
news:#A$...
> yes after joining the domain, there isa process that keeps hanging and
> waiting for a "end now". I want to be able to kill that process and then
> reboot
>
> "Alex K. Angelopoulos" <alex(dot) k(dot again)angelopoulos(at)gmail.com>
> wrote in message news:...
>> Since you're using the Reboot() method, that will happen automatically.
>> Are you running into problems with making this work in a specific
>> situation?
>>
>> "Joey" <> wrote in message
>> news:...
>>> ok
>>>
>>> how do I add a line that will kill all processes ?
>>>
>>> Set objNetwork = CreateObject("WScript.Network")
>>> strComputer = objNetwork.ComputerName
>>> Set objComputer =
>>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" & strComputer &
>>> "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer & "'")
>>> 'strDomain = objComputer.Domain
>>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>>> intReturn1 = objComputer.JoinDomainOrWorkgroup("workgroup")
>>>
>>>
>>> Set OpSysSet =
>>> GetObject("winmgmts:{(Shutdown)}!\\.\root\cimv2"). ExecQuery _
>>> ("select * from Win32_OperatingSystem where Primary=true")
>>>
>>> for each OpSys in OpSysSet
>>> OpSys.Reboot()
>>> next
>>>
>>>
>>>
>>> "Alex K. Angelopoulos" <aka(at)mvps.org> wrote in message
>>> news:%...
>>>> First, is the computer currently a domain member, not a workgroup
>>>> member? If so - and only if so - you first need to use the
>>>> UnjoinDomainOrWorkgroup the way you have it.
>>>>
>>>> The second step is to use JoinDomainOrWorkgroup, like this:
>>>>
>>>> objComputer.JoinDomainOrWorkgroup("workgroup")
>>>>
>>>>
>>>> you have the necessary privileges, don't bother with arguments
>>>>
>>>> "Joey" <> wrote in message
>>>> news:eIAv$...
>>>>> how do I modify the below to join a workgroup name "workgroup" instead
>>>>> of the domain name?
>>>>>
>>>>> Set objNetwork = CreateObject("WScript.Network")
>>>>> strComputer = objNetwork.ComputerName
>>>>> Set objComputer =
>>>>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" & strComputer
>>>>> & "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer & "'")
>>>>> strDomain = objComputer.Domain
>>>>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>>>>>
>>>
>>>

>
>

 
Reply With Quote
 
Joey
Guest
Posts: n/a

 
      05-11-2009
it says cannot use parenthesus when calling a Sub

"Alex K. Angelopoulos" <alex(dot) k(dot again)angelopoulos(at)gmail.com>
wrote in message news:%...
> Instead of using Win32_OperatingSystem's Reboot() method, you're probably
> better off using its Win32Shutdown; this allows you forced shutdown
> (trying to kill all processes isn't going to work - it will kill your own
> script as well, and some processes won't be touched).
>
> You want to specify restart + forcing, which is a value of 6 if you check
> the online documentation for the method:
>
> http://msdn.microsoft.com/en-us/libr...8VS.85%29.aspx
>
> so use it like this:
> OpSys.Win32Shutdown( 6, 0)
>
>
> "Joey" <> wrote in message
> news:#A$...
>> yes after joining the domain, there isa process that keeps hanging and
>> waiting for a "end now". I want to be able to kill that process and then
>> reboot
>>
>> "Alex K. Angelopoulos" <alex(dot) k(dot again)angelopoulos(at)gmail.com>
>> wrote in message news:...
>>> Since you're using the Reboot() method, that will happen automatically.
>>> Are you running into problems with making this work in a specific
>>> situation?
>>>
>>> "Joey" <> wrote in message
>>> news:...
>>>> ok
>>>>
>>>> how do I add a line that will kill all processes ?
>>>>
>>>> Set objNetwork = CreateObject("WScript.Network")
>>>> strComputer = objNetwork.ComputerName
>>>> Set objComputer =
>>>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" & strComputer
>>>> & "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer & "'")
>>>> 'strDomain = objComputer.Domain
>>>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>>>> intReturn1 = objComputer.JoinDomainOrWorkgroup("workgroup")
>>>>
>>>>
>>>> Set OpSysSet =
>>>> GetObject("winmgmts:{(Shutdown)}!\\.\root\cimv2"). ExecQuery _
>>>> ("select * from Win32_OperatingSystem where Primary=true")
>>>>
>>>> for each OpSys in OpSysSet
>>>> OpSys.Reboot()
>>>> next
>>>>
>>>>
>>>>
>>>> "Alex K. Angelopoulos" <aka(at)mvps.org> wrote in message
>>>> news:%...
>>>>> First, is the computer currently a domain member, not a workgroup
>>>>> member? If so - and only if so - you first need to use the
>>>>> UnjoinDomainOrWorkgroup the way you have it.
>>>>>
>>>>> The second step is to use JoinDomainOrWorkgroup, like this:
>>>>>
>>>>> objComputer.JoinDomainOrWorkgroup("workgroup")
>>>>>
>>>>>
>>>>> you have the necessary privileges, don't bother with arguments
>>>>>
>>>>> "Joey" <> wrote in message
>>>>> news:eIAv$...
>>>>>> how do I modify the below to join a workgroup name "workgroup"
>>>>>> instead of the domain name?
>>>>>>
>>>>>> Set objNetwork = CreateObject("WScript.Network")
>>>>>> strComputer = objNetwork.ComputerName
>>>>>> Set objComputer =
>>>>>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" &
>>>>>> strComputer & "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer
>>>>>> & "'")
>>>>>> strDomain = objComputer.Domain
>>>>>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>>>>>>
>>>>
>>>>

>>
>>



 
Reply With Quote
 
Alex K. Angelopoulos
Guest
Posts: n/a

 
      05-11-2009
Ah, you're not capturing the return value. Do so, and that fixes the
problem:

intRtn = OpSys.Win32Shutdown( 6, 0)

alternatively, if you don't want to check the return value, just don't use
the parentheses. VBScript has weird syntax requirements:

OpSys.Win32Shutdown 6, 0

"Joey" <> wrote in message
news:...
> it says cannot use parenthesus when calling a Sub
>
> "Alex K. Angelopoulos" <alex(dot) k(dot again)angelopoulos(at)gmail.com>
> wrote in message news:%...
>> Instead of using Win32_OperatingSystem's Reboot() method, you're probably
>> better off using its Win32Shutdown; this allows you forced shutdown
>> (trying to kill all processes isn't going to work - it will kill your own
>> script as well, and some processes won't be touched).
>>
>> You want to specify restart + forcing, which is a value of 6 if you check
>> the online documentation for the method:
>>
>> http://msdn.microsoft.com/en-us/libr...8VS.85%29.aspx
>>
>> so use it like this:
>> OpSys.Win32Shutdown( 6, 0)
>>
>>
>> "Joey" <> wrote in message
>> news:#A$...
>>> yes after joining the domain, there isa process that keeps hanging and
>>> waiting for a "end now". I want to be able to kill that process and then
>>> reboot
>>>
>>> "Alex K. Angelopoulos" <alex(dot) k(dot again)angelopoulos(at)gmail.com>
>>> wrote in message news:...
>>>> Since you're using the Reboot() method, that will happen automatically.
>>>> Are you running into problems with making this work in a specific
>>>> situation?
>>>>
>>>> "Joey" <> wrote in message
>>>> news:...
>>>>> ok
>>>>>
>>>>> how do I add a line that will kill all processes ?
>>>>>
>>>>> Set objNetwork = CreateObject("WScript.Network")
>>>>> strComputer = objNetwork.ComputerName
>>>>> Set objComputer =
>>>>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" & strComputer
>>>>> & "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer & "'")
>>>>> 'strDomain = objComputer.Domain
>>>>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>>>>> intReturn1 = objComputer.JoinDomainOrWorkgroup("workgroup")
>>>>>
>>>>>
>>>>> Set OpSysSet =
>>>>> GetObject("winmgmts:{(Shutdown)}!\\.\root\cimv2"). ExecQuery _
>>>>> ("select * from Win32_OperatingSystem where Primary=true")
>>>>>
>>>>> for each OpSys in OpSysSet
>>>>> OpSys.Reboot()
>>>>> next
>>>>>
>>>>>
>>>>>
>>>>> "Alex K. Angelopoulos" <aka(at)mvps.org> wrote in message
>>>>> news:%...
>>>>>> First, is the computer currently a domain member, not a workgroup
>>>>>> member? If so - and only if so - you first need to use the
>>>>>> UnjoinDomainOrWorkgroup the way you have it.
>>>>>>
>>>>>> The second step is to use JoinDomainOrWorkgroup, like this:
>>>>>>
>>>>>> objComputer.JoinDomainOrWorkgroup("workgroup")
>>>>>>
>>>>>>
>>>>>> you have the necessary privileges, don't bother with arguments
>>>>>>
>>>>>> "Joey" <> wrote in message
>>>>>> news:eIAv$...
>>>>>>> how do I modify the below to join a workgroup name "workgroup"
>>>>>>> instead of the domain name?
>>>>>>>
>>>>>>> Set objNetwork = CreateObject("WScript.Network")
>>>>>>> strComputer = objNetwork.ComputerName
>>>>>>> Set objComputer =
>>>>>>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" &
>>>>>>> strComputer & "\root\cimv2:Win32_ComputerSystem.Name='" &
>>>>>>> strComputer & "'")
>>>>>>> strDomain = objComputer.Domain
>>>>>>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>>>>>>>
>>>>>
>>>>>
>>>
>>>

>
>

 
Reply With Quote
 
Joey
Guest
Posts: n/a

 
      05-12-2009
thank you very much
"Alex K. Angelopoulos" <alex(dot) k(dot again)angelopoulos(at)gmail.com>
wrote in message news:...
> Ah, you're not capturing the return value. Do so, and that fixes the
> problem:
>
> intRtn = OpSys.Win32Shutdown( 6, 0)
>
> alternatively, if you don't want to check the return value, just don't use
> the parentheses. VBScript has weird syntax requirements:
>
> OpSys.Win32Shutdown 6, 0
>
> "Joey" <> wrote in message
> news:...
>> it says cannot use parenthesus when calling a Sub
>>
>> "Alex K. Angelopoulos" <alex(dot) k(dot again)angelopoulos(at)gmail.com>
>> wrote in message news:%...
>>> Instead of using Win32_OperatingSystem's Reboot() method, you're
>>> probably better off using its Win32Shutdown; this allows you forced
>>> shutdown (trying to kill all processes isn't going to work - it will
>>> kill your own script as well, and some processes won't be touched).
>>>
>>> You want to specify restart + forcing, which is a value of 6 if you
>>> check the online documentation for the method:
>>>
>>> http://msdn.microsoft.com/en-us/libr...8VS.85%29.aspx
>>>
>>> so use it like this:
>>> OpSys.Win32Shutdown( 6, 0)
>>>
>>>
>>> "Joey" <> wrote in message
>>> news:#A$...
>>>> yes after joining the domain, there isa process that keeps hanging and
>>>> waiting for a "end now". I want to be able to kill that process and
>>>> then reboot
>>>>
>>>> "Alex K. Angelopoulos" <alex(dot) k(dot
>>>> again)angelopoulos(at)gmail.com> wrote in message
>>>> news:...
>>>>> Since you're using the Reboot() method, that will happen
>>>>> automatically. Are you running into problems with making this work in
>>>>> a specific situation?
>>>>>
>>>>> "Joey" <> wrote in message
>>>>> news:...
>>>>>> ok
>>>>>>
>>>>>> how do I add a line that will kill all processes ?
>>>>>>
>>>>>> Set objNetwork = CreateObject("WScript.Network")
>>>>>> strComputer = objNetwork.ComputerName
>>>>>> Set objComputer =
>>>>>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" &
>>>>>> strComputer & "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer
>>>>>> & "'")
>>>>>> 'strDomain = objComputer.Domain
>>>>>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>>>>>> intReturn1 = objComputer.JoinDomainOrWorkgroup("workgroup")
>>>>>>
>>>>>>
>>>>>> Set OpSysSet =
>>>>>> GetObject("winmgmts:{(Shutdown)}!\\.\root\cimv2"). ExecQuery _
>>>>>> ("select * from Win32_OperatingSystem where Primary=true")
>>>>>>
>>>>>> for each OpSys in OpSysSet
>>>>>> OpSys.Reboot()
>>>>>> next
>>>>>>
>>>>>>
>>>>>>
>>>>>> "Alex K. Angelopoulos" <aka(at)mvps.org> wrote in message
>>>>>> news:%...
>>>>>>> First, is the computer currently a domain member, not a workgroup
>>>>>>> member? If so - and only if so - you first need to use the
>>>>>>> UnjoinDomainOrWorkgroup the way you have it.
>>>>>>>
>>>>>>> The second step is to use JoinDomainOrWorkgroup, like this:
>>>>>>>
>>>>>>> objComputer.JoinDomainOrWorkgroup("workgroup")
>>>>>>>
>>>>>>>
>>>>>>> you have the necessary privileges, don't bother with arguments
>>>>>>>
>>>>>>> "Joey" <> wrote in message
>>>>>>> news:eIAv$...
>>>>>>>> how do I modify the below to join a workgroup name "workgroup"
>>>>>>>> instead of the domain name?
>>>>>>>>
>>>>>>>> Set objNetwork = CreateObject("WScript.Network")
>>>>>>>> strComputer = objNetwork.ComputerName
>>>>>>>> Set objComputer =
>>>>>>>> GetObject("winmgmts:{impersonationLevel=Impersonat e}!\\" &
>>>>>>>> strComputer & "\root\cimv2:Win32_ComputerSystem.Name='" &
>>>>>>>> strComputer & "'")
>>>>>>>> strDomain = objComputer.Domain
>>>>>>>> intReturn = objComputer.UnjoinDomainOrWorkgroup (NULL,NULL,0)
>>>>>>>>
>>>>>>
>>>>>>
>>>>
>>>>

>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
what kind of rights to disjoin machine from domain Joey Windows Server 6 05-07-2009 06:42 AM
trying to join vista machine to a workgroup magpiefound Windows Vista Networking 1 03-21-2007 02:05 PM
SBS machine needs to join Workgroup Jeff Daly Windows Server 5 11-11-2006 01:53 AM
Join XP sp2 workgroup machine to domain with same machine name Ozz Active Directory 0 01-31-2006 08:07 PM
Workgroup Machine and Domain Virtual Machine? Scott Stubbs Virtual PC 4 10-15-2004 02:07 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59