Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by NJDEV1K

  1. NJDEV1K

    Software Script Management Tool Wanted

    Take a look at Prism Deploy, the next version looks great. http://www.newboundary.com
  2. NJDEV1K

    Create user account in admin group

    That worked Thanks
  3. NJDEV1K

    Create user account in admin group

    One more little issue... If I use strComputer = "." I get an error stating that the user does not exist so it can't be added to the group. If I use strComputer = "Computername" with a computer name in it it runs fine. Is there a way to get it to work with the "."????? Thanks
  4. NJDEV1K

    Create user account in admin group

    MRMOVIE Ignore Last reply, Your script worked. I ran a different script by accident. You rock, thank you very much for your help.
  5. NJDEV1K

    Create user account in admin group

    It added the user but didn't make it a member of administrators. I appreciate your help on this.
  6. NJDEV1K

    Create user account in admin group

    I tried the script and it just errors saying the user cannot be added to the group because the user does not exist.
  7. NJDEV1K

    Create user account in admin group

    I did find the below script to add a user to the admin group. Can the two be combined anyway? strComputer = "." Set objGroup = GetObject("WinNT://" & strComputer & "/Administrators,group") Set objUser = GetObject("WinNT://" & strComputer & "/USERNAME,user") objGroup.Add(objUser.ADsPath)
  8. NJDEV1K

    Create user account in admin group

    I have used the script below successfully to create a user, is there a way to have the script make the user a member of the Administrators group when creating the account? strComputer = "." Set colAccounts = GetObject("WinNT://" & strComputer & "") Set objUser = colAccounts.Create("user"...
  9. NJDEV1K

    Remove machine from Domain to workgroup

    I am trying to figure out the best way to script removing a computer from a Domain and adding it to a workgroup. I also then have to add a local user and move the domain profile that was there to the workgroup user's profile. Any suggestions or help would be appreciated.
  10. NJDEV1K

    AD Script: change computer local admin password & disable local guest

    All I have is the script below strComputer = "computername" Set colAccounts = GetObject("WinNT://" & strComputer & "/Administrators,group") Set objUser = colAccounts.Create("/USERNAME,user") objUser.SetPassword "1234" objUser.SetInfo
  11. NJDEV1K

    Windows not seeing modem

    Try uninstalling the modem from device manager, reboot and reinstall it again. You may want to remove the data cable you have connected from one PC to the other until you get the modem working.
  12. NJDEV1K

    DSL questions

    DSL is the way to go. Whether you can install it or not depends on the type of modem they supply and your level of comfort around a PC. If you do not feel comfortable opening your PC to install a network card, then hopefully they will provide a USB modem. I personally do not recommend a USB...
  13. NJDEV1K

    Retain Local Profile when joining domain

    I would recommend using the moveuser utility from Microsoft. You can get it from the Windows 2003 Resource toolkit. http://www.microsoft.com/downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&displaylang=en An example of using it would be: moveuser user1 MIS\user2 /y...
  14. NJDEV1K

    Error upgrading from win me to win 2000

    Windows ME to Windows 2000 upgrade is not supported http://support.microsoft.com/?kbid=272627 SUMMARY Upgrading Windows Millennium Edition (Me) to Microsoft Windows 2000 Professional has not been tested for full feature functionality and is not a supported upgrade path. MORE INFORMATION A...
  15. NJDEV1K

    Remove computer from NT domain join to 2003 AD Domain

    I found this script, maybe someone can tell me what I need to edit to get it to work, Option Explicit Dim oFileSystem 'Scripting Dictionary object Dim oWshShell 'Windows Script Host Shell object Dim sCurrentName 'holds computername environment variable Dim oWshEnvironment 'Windows Script...

Part and Inventory Search

Back
Top