
FAILURE (Err): 70: CreateObject (Microsoft.BDD.Utility)
I had a well functioning MDT 2010 Server from which we deployed successful W7 Clients with LiteTouch. After one day it stops working and I got this message in BDD.log. Last two lines: RUN: …
VBScript for parsing multiple text files
intCol = 0 Set objFSO = CreateObject ("Scripting.FileSystemObject") Set objFolder = objFSO.GetFolder (strFolder) For Each objFile In objFolder.Files intCol = intCol + 1 Set objReadFile = …
Delete Internet Temp Files on shutdown
Jun 10, 2008 · Is there a setting for deleting the internet temp files when a user logs off or shuts down? I realize there is one to empty temp files on close if IE, but that will nto work for us. Thanks, Bob …
Run the following script on all computers in the domain
I've tried getting this to work with the various templates, but I've been unable to. I'm trying to get it to run on all the computers in my domain. Let's say the domain is Slateythree.net Here's what I have:
How to trigger unread emails for a given period
I kindly need your help on the following. I have a mailbox that receives huge number of emails per day , I`m processing those all unread emails every one minute using a third party tool and make them read …
Como gravar o valor de um atributo de um usuário do AD no registro …
Set objSysInfo = CreateObject ("ADSystemInfo") Set objUser = GetObject ("LDAP://" & objSysInfo.UserName) 'Quero gravar o display name no registro strDisplayName = …
VBScript to get number of files by type and size of files by type
E.G Root folder has 2 folders each has 2 sub folders. They contain a mix of files doc, xls, ppt, txt etc. Script runs and reports the following in Excel Folder1/sub-foldera - Total size 245MB - DOC 23 Files …
How to verify from a list of servers if they are belong to a domain in AD?
Set objFSO = CreateObject ("Scripting.FileSystemObject") Set objFile = objFSO.OpenTextFile (strFile, ForReading) ' Determine DNS name of root domain from RootDSE object.
Writing manually to the execmgr.log
I am currently working on an install package, wrapped in a custom executable. The executable does a Case statement with a number of system checks before choosing what action to perform. As this is …
LDAP query to return users and groups recursively?
Dec 1, 2016 · I have some VBA code in Excel that returns the list of users and groups contained in the group 'SomeGroup'. However, since 'SomeGroup' contains other groups, I'd like to return the users …