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

Feature Comparison of MSDE and SQL Server 2005 Express

Feature Comparison of MSDE and SQL Server 2005 Express While the core database capabilities of MSDE and SQL Server 2005 Express are similar, the set of features and database capabilities of MSDE and SQL Server 2005 Express are different. The following table provides a feature comparison between MSDE and SQL Server 2005 Express. Feature MSDE … Read more

WQL to SQL Query

WQL to SQL Want to see What is the query????????   This SQL Query can be used to see how WQL is converted to SQL by SMS for collections   Select Collections.SiteID , Collections.CollectionName , Collection_Rules.QueryName , Collection_Rules_SQL.WQL , Collection_Rules_SQL.SQL From Collections,Collection_Rules, Collection_Rules_SQL Where Collections.CollectionID = Collection_Rules.CollectionID AND Collections.CollectionID = Collection_Rules_SQL.CollectionID——————- Thanks,https://sccm07.blogspot.com/

SCCM Query for SCCM Clients Model and Manufactures Name

Need to extract SCCM Clients Model and Manufactures Name?   You have to dig the Computer_System_DATA Table. Here are two shared SQL Querys.   Select DISTINCT Model0 from Computer_System_DATA The above one will show all the Models The below Query will show everything in the Database Select * from Computer_system_data ——————-Thanks,https://sccm07.blogspot.com/