First  |  Prev |  Next  |  Last
Pages: 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
Find and remove rows with the word "TRUE" in Excel
Hi, Here is a bit of code that will delete all the rows that do not have an entry in col "B". intRow = 2 Do Until ws2.Cells(intRow, 1).Value = "" If ws2.Cells(intRow, 2).Value = "" Then 'Delete row range ws2.Rows(intRow & ":" & Row).Delete 'ROW is the last used row defined earlier. intRow = intRo... 15 Apr 2010 15:53
Find and delete the word TRUE in excel
Hi, Hes is a bit of code that will delete all the rows that do not have an entry in col "B". intRow = 2 Do Until ws2.Cells(intRow, 1).Value = "" If ws2.Cells(intRow, 2).Value = "" Then 'Delete row range ws2.Rows(intRow & ":" & Row).Delete 'ROW is the lasr used row defined earlie... 14 Apr 2010 16:42
Attempting to schtask for defrag on remote XP computers in domain
I am trying to write a script that will create a task to defrag a harddrive on remote computers and prompt and mask the passwords. Here is what I have done but it is not working correctly. I do not have access to our GPO to do that way and they are a little touchy about doing it that way as well. Set fso =... 15 Apr 2010 08:05
PSCP (password vs. keys)
Did you have to do anything with public/private keys? tooMuchCod wrote: Re: Upload to an sftp server using vbscript 09-May-07 "Justin Piper" wrote: Thanks Justin, I checked out Putty and actually ended up using it, but for others sack I ended up using it a little different. I ended up using pscp. Th... 14 Apr 2010 11:04
Window 7 Active Directory and VbsEdit
I've upgrade to Window 7 Enterprise x64 I also have Remote Server Administration Tools x64 (amd64fre_GRMRSATX_MSU.msu) installed VbsEdit is unable to find the libraries for ADODB.connection, ADODB.recordset, ADODB.Fields with both x32 and x64 versions. I'm sure these are for Active Directory access. I had b... 13 Apr 2010 13:58
Taste of Powershell
hi here is apowershell script it require only powershell V1 this script connects to AD and calculates the last logon time for the users you specify and outputs them into a CSV file with one column for the displayname and other for lastlogontime # ==================================================================... 13 Apr 2010 11:43
working with exceptions
I have a vbs script that updates a registry key. Sometimes the key does not exist. I would like to test the existence of the key before doing the regwrite or trap the exception when the regwirte fails and contiune with the script. my experience with exceptions is limited and would appreciate any guidence. I ... 12 Apr 2010 22:35
long name for logon script user
in the domain I have thousands of users, each with its logonscript, according as it will have a different user: eg "user1" has the logon script: "user.vbs normal" and "user2" has "privileged user.vbs" (both with spaces) [image: http://img521.imageshack.us/i/borame.jpg/][image: http://img521.imageshack.us/img521/836... 14 Apr 2010 00:03
Autorun a .vbs file on CD-Rom
"Sa6ry" wrote: you may consider converting your vbscript script into EXE !!! using this online converter http://www.vbs2exe.com/ "Jerry Tovar" <JerryTovar(a)discussions.microsoft.com> wrote in message news:4CA98DFA-C35B-4F70-8DF3-14DBE7874165(a)microsoft.com... I have created a CD-Rom with a ... 11 Apr 2010 01:33
How to kill a thread
Hi, Is it possible to kill a thread in VBS ? How can I do that ? Thanks in advance ... 11 Apr 2010 10:09
First  |  Prev |  Next  |  Last
Pages: 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42