'VBS Script To Send A Remote Machines Hot Fix Information To Excel

'VBS Script To Send A Remote Machines Hot Fix Information To ExcelstrComputer = InputBox ("Enter Machine Name")   Set objExcel = CreateObject("Excel.Application") objExcel.Visible = True objExcel.Workbooks.Add intRow = 2   objExcel.Cells(1, 1).Value = "Machine Name" objExcel.Cells(1, 2).Value = "Hot Fix ID" objExcel.Cells(1, 3).Value = "Description" objExcel.Cells(1, 4).Value = "Install Date"   Set objWMIService = GetObject("winmgmts:" … Read more

‘VBS Script To Send A Remote Machines Hot Fix Information To Excel

'VBS Script To Send A Remote Machines Hot Fix Information To ExcelstrComputer = InputBox ("Enter Machine Name")   Set objExcel = CreateObject("Excel.Application") objExcel.Visible = True objExcel.Workbooks.Add intRow = 2   objExcel.Cells(1, 1).Value = "Machine Name" objExcel.Cells(1, 2).Value = "Hot Fix ID" objExcel.Cells(1, 3).Value = "Description" objExcel.Cells(1, 4).Value = "Install Date"   Set objWMIService = GetObject("winmgmts:" … Read more

ALL MY recommendations to become a expert on 2k3 Server

Task 1 Links and comments AD Basics  https://technet.microsoft.com/en-us/library/bb727169.aspx AD basicthings to be know –Troubleshooting Active Directory https://technet.microsoft.com/en-us/library/cc737561(WS.10).aspx  Common Windows Administrative Tasks https://technet.microsoft.com/en-us/library/cc784837(WS.10).aspx   Backing up and restoring data   Changing group memberships   Checking event logs   Creating administrative scripts   Creating logon scripts   Creating user and group accounts   Deploying and upgrading software … Read more

The Microsoft(R) Windows(R) Server 2003 Resource Tools

The Microsoft® Windows® Server 2003 Resource Tools   Acctinfo.dll (documented in Readme.htm) Adlb.exe: Active Directory Load Balancing Tool Admx.msi: ADM File Parser Atmarp.exe: Windows ATM ARP Server Information Tool Atmlane.exe: Windows ATM LAN Emulation Client Information Autoexnt.exe: AutoExNT Service Cdburn.exe: ISO CD-ROM Burner Tool Checkrepl.vbs: Check Replication Chklnks.exe: Link Check Wizard Chknic.exe: Network Interface Card … Read more

Step-by-Step Guide to Managing the Active Directory

Introduction This guide introduces you to administration of the Microsoft® Windows® 2000 Active Directory™ service and the Active Directory Users and Computers snap-in. This snap-in allows you to add, move, delete, and alter the properties for objects such as users, contacts, groups, servers, printers, and shared folders. Prerequisites This Software Installation and Maintenance document is … Read more

Creating 1000 User Accounts

———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————– –Creating 1000 User Accounts   Set objRootDSE = GetObject("LDAP://rootDSE")Set objContainer = GetObject("LDAP://cn=Users," & _    objRootDSE.Get("defaultNamingContext")) For i = 1 To 1000    Set objLeaf = objContainer.Create("User", "cn=UserNo" & i)     objLeaf.Put "sAMAccountName", "UserNo" & i    objLeaf.SetInfoNext WScript.Echo "1000 Users created."     ———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————–—-Creating an Active Directory User Account————————————————————————-   Creates a user account in Active … Read more

OSD Step by Step with SCCM / ConfigMgr 2007

Preparing the Environment for Configuration Manager OSD Step 1: Create a user account to be assigned as the Network Access Account: Note: You can user an existing account or you can configure a new account. 1. On the Start menu, point to Administrative Tools, and then click Active Directory Users and Computers. The Active Directory … Read more