<![CDATA[Article Comments for Bill Stewart]]>http://www.windowsitpro.com/authors/author/author/5777765/rsscomment/5777765en-USSun, 27 May 2012 07:43:44 GMTSun, 27 May 2012 07:43:44 GMTSearching the Registry with PowerShellhttp://www.windowsitpro.com/article/scripting/searching-registry-powershell-141799#commentsAnchorWed, 11 Apr 2012 06:21:24 GMT
Good article, Bill. I tried the script and it works for me. For those, who need to perform registry export, editing tasks, including registry management on remote PCs, I recommend also to take a look on the following useful utilities: Free EMCO Remote Registry Exporter [http://emcosoftware.com/remote-registry-exporter] that is able to export registry data from remote PCs. EMCO Remote Registry Merge [http://emcosoftware.com/remote-registry-merge] that is able to export/modify data remotely. Both tools can work with multiple remote PCs and include scheduling functionality. ]]>
thorarinnWed, 11 Apr 2012 06:21:24 GMThttp://www.windowsitpro.com/article/scripting/searching-registry-powershell-141799#commentsAnchor
Use PowerShell to Run Programs on Remote Computershttp://www.windowsitpro.com/article/windows-powershell/powershell-run-programs-remotely-141270#commentsAnchorFri, 23 Mar 2012 15:37:12 GMT
For this to work, does the target machine needs Powershell installed?]]>
yongchenliyinFri, 23 Mar 2012 15:37:12 GMThttp://www.windowsitpro.com/article/windows-powershell/powershell-run-programs-remotely-141270#commentsAnchor
Searching the Registry with PowerShellhttp://www.windowsitpro.com/article/scripting/searching-registry-powershell-141799#commentsAnchorFri, 23 Mar 2012 13:31:27 GMT
Good article - where is the script?]]>
Glen SelfFri, 23 Mar 2012 13:31:27 GMThttp://www.windowsitpro.com/article/scripting/searching-registry-powershell-141799#commentsAnchor
4 Challenges of Auditing AD Users and Groupshttp://www.windowsitpro.com/article/scripting/auditing-active-directory-users-groups-141463#commentsAnchorThu, 08 Mar 2012 19:26:25 GMT
This script is helpful unless you need real solid reporting and filtering capabilities, which is necessary to appease most auditors. If you only need AD auditing for peace of mind or internal security, this script can be useful. In my opinion, its probably not enough to appease auditors who demand reporting and audit trail offered by tools like NetWrix AD Change Reporter (freeware) or Quest ChangeAuditor.]]>
Lorenzo0o0Thu, 08 Mar 2012 19:26:25 GMThttp://www.windowsitpro.com/article/scripting/auditing-active-directory-users-groups-141463#commentsAnchor
4 Challenges of Auditing AD Users and Groupshttp://www.windowsitpro.com/article/scripting/auditing-active-directory-users-groups-141463#commentsAnchorFri, 02 Mar 2012 12:17:05 GMT
Bill, this was an interesting article. I have a similar script that pulls group membership for all users in the domain and writes the entries to a csv. It also dates the csv file and appends the date to each entry to be used as a reference when restoring accidentally deleted accounts. ###start### connect-QADService -service 'domain.contoso.com' $objGroup = get-qadgroup -sizelimit 0 -empty $false -grouptype 'security' $result = $objGroup | foreach-object { $group=$_.name get-qadgroupmember $_ -ea SilentlyContinue -sizelimit 0 | select-object SamAccountName,displayname,@{n="GroupName";e={$group}},@{n="Date";e={$date}} } $filename = "allDomaingroupmembers{0:yyyyMMdd}.csv" -f (Get-Date) $result | export-csv -path D:\scripts\Allgroupmembershipbackup\$filename ###end### This does take a couple hours to run so any feedback would be much appreciated.]]>
Jamie1Fri, 02 Mar 2012 12:17:05 GMThttp://www.windowsitpro.com/article/scripting/auditing-active-directory-users-groups-141463#commentsAnchor
Common Ways to Run Programs on Remote Computershttp://www.windowsitpro.com/article/windows-powershell/scripting-remote-computers-141558#commentsAnchorSat, 21 Jan 2012 05:34:10 GMT
Good article Bill. I must add two alternatives for remote execution: 1) Telnet 2) Windows Remote Shell (Winrs). Telnet (telnet server) service exist in XP but it is disabled by default. After enabling this service we can remotely connect to to XPs and execute commands on those computers. On Vista and 7 Telnet Server and Client components can be installed from the Add/Remove Windows Components section. Telnet uses port 23 by default. Winrs on the other hand exists only on vista and 7. When configured, commands can be executed on remote computers over port 80.]]>
murat yildirimogluSat, 21 Jan 2012 05:34:10 GMThttp://www.windowsitpro.com/article/windows-powershell/scripting-remote-computers-141558#commentsAnchor
Auditing 32-Bit and 64-Bit Applications with PowerShellhttp://www.windowsitpro.com/article/scripting/Auditing 32-bit and 64-bit Applications with PowerShell-136129#commentsAnchorWed, 03 Aug 2011 09:16:32 GMT
Bill, does this actually find all the applications? Referencing Greg's post. http://www.scriptlogic.com/smbit/article/top-tricks-in-inventorying-installed-applications-on-your-network Theres a problem, however, with the registry-based approach. Not every application deposits the correct (or, in many cases, any!) information to that location in the registry. In my case, while 7-Zip did indeed store its information in that location, I found no record of my installed copy of Camtasia, for example. Thats why getting a complete record of every application means also looking elsewhere. A second option is to see whats been stored in the computers WMI store. Many applications, when installed, add information about themselves to the WMI class called Win32_Product. ]]>
Tim BoltonWed, 03 Aug 2011 09:16:32 GMThttp://www.windowsitpro.com/article/scripting/Auditing 32-bit and 64-bit Applications with PowerShell-136129#commentsAnchor
Byte Conversions Made Easyhttp://www.windowsitpro.com/article/development/byte-conversions-made-easy-129737#commentsAnchorThu, 12 May 2011 11:36:33 GMT
Btw (at least for me) the Byte Calculator window was only displaying down to the Terabytes field just above the Clear button. I changed "var APP_HEIGHT = 495," to "var APP_HEIGHT = 595," and all is well now :-) ]]>
bretabennettThu, 12 May 2011 11:36:33 GMThttp://www.windowsitpro.com/article/development/byte-conversions-made-easy-129737#commentsAnchor
Byte Conversions Made Easyhttp://www.windowsitpro.com/article/development/byte-conversions-made-easy-129737#commentsAnchorThu, 12 May 2011 11:12:32 GMT
Much appreciated and useful app. Thanks Bill!]]>
bretabennettThu, 12 May 2011 11:12:32 GMThttp://www.windowsitpro.com/article/development/byte-conversions-made-easy-129737#commentsAnchor
Byte Conversions Made Easyhttp://www.windowsitpro.com/article/development/byte-conversions-made-easy-129737#commentsAnchorWed, 11 May 2011 14:17:47 GMT
cool app - nice job]]>
aliebermanWed, 11 May 2011 14:17:47 GMThttp://www.windowsitpro.com/article/development/byte-conversions-made-easy-129737#commentsAnchor
Rebooting Computers Using PowerShellhttp://www.windowsitpro.com/article/windows-management-instrumentation-wmi/rebooting-computers-using-powershell#commentsAnchorMon, 26 Apr 2010 18:41:23 GMT
I can as well...]]>
LynchMon, 26 Apr 2010 18:41:23 GMThttp://www.windowsitpro.com/article/windows-management-instrumentation-wmi/rebooting-computers-using-powershell#commentsAnchor
Get Information About .msi Files with Just a Few Clickshttp://www.windowsitpro.com/article/deployment/get-information-about-msi-files-with-just-a-few-clicks#commentsAnchorWed, 14 Apr 2010 02:08:45 GMT
Nice tool, thanks.
A remark though: some MSI have indeed "obscure filename", but so is the ZIP of your tool, any ZIPInfo planned? ;-)]]>
TerDaleWed, 14 Apr 2010 02:08:45 GMThttp://www.windowsitpro.com/article/deployment/get-information-about-msi-files-with-just-a-few-clicks#commentsAnchor
Get Information About .msi Files with Just a Few Clickshttp://www.windowsitpro.com/article/deployment/get-information-about-msi-files-with-just-a-few-clicks#commentsAnchorWed, 14 Apr 2010 02:08:35 GMT
Nice tool, thanks.
A remark though: some MSI have indeed "obscure filename", but so is the ZIP of your tool, any ZIPInfo planned? ;-)]]>
TerDaleWed, 14 Apr 2010 02:08:35 GMThttp://www.windowsitpro.com/article/deployment/get-information-about-msi-files-with-just-a-few-clicks#commentsAnchor
Get Information About .msi Files with Just a Few Clickshttp://www.windowsitpro.com/article/deployment/get-information-about-msi-files-with-just-a-few-clicks#commentsAnchorWed, 14 Apr 2010 02:08:10 GMT
Nice tool, thanks.
A remark though: some MSI have indeed "obscure filename", but so is the ZIP of your tool, any ZIPInfo planned? ;-)]]>
TerDaleWed, 14 Apr 2010 02:08:10 GMThttp://www.windowsitpro.com/article/deployment/get-information-about-msi-files-with-just-a-few-clicks#commentsAnchor
Get Information About .msi Files with Just a Few Clickshttp://www.windowsitpro.com/article/deployment/get-information-about-msi-files-with-just-a-few-clicks#commentsAnchorWed, 14 Apr 2010 02:04:46 GMT
Nice tool, thanks.
A remark though: some MSI have indeed "obscure filename", but so is the ZIP of your tool, any ZIPInfo planned? ;-)]]>
DELATREWed, 14 Apr 2010 02:04:46 GMThttp://www.windowsitpro.com/article/deployment/get-information-about-msi-files-with-just-a-few-clicks#commentsAnchor
Running PowerShell Scripts Is as Easy as 1-2-3http://www.windowsitpro.com/article/windows-powershell/running-powershell-scripts-is-as-easy-as-1-2-3#commentsAnchorWed, 24 Feb 2010 16:14:17 GMT
I found out many of these things the hard way. It’s nice to see more and more useful articles about Powershell. I’m still a newbie, but figured out one very useful method... I’ve chosen to leave my security at the "restricted" level on my PC and all the PCs I support in my department. It’s actually very simple to lower security to "unrestricted", run a script, and then set it back to "restricted". It requires running Powershell from a regular Cmd wrapper... set workDrv=D: set workDir=Scripting\Powershell %workDrv% cd %workDrv%\%workDir% powershell -command "& {Set-ExecutionPolicy -Scope LocalMachine Unrestricted -Force}" @echo. @echo. @set /p ScriptName=What’s the name of your PowerShell script? : powershell -command .\%ScriptName% @echo. @echo. :: Return the security policy to defaults, restricted... powershell -command "& {Set-ExecutionPolicy -Scope LocalMachine Restricted -Force}" powershell -command "& {Set-ExecutionPolicy -Scope CurrentUser Undefined -Force}" powershell -command "& {Set-ExecutionPolicy -Scope Process Undefined -Force}" :END @pause The two variables for preferred workDrv and workDir need to be set. From then on, all one has to do is run it. It prompts for the name of the script. I always copy the name beforehand. When prompted, all I have to do is right-click to paste (Cmd QuickEdit feature), and hit Enter. The pause at the end allows me to verify that the "restricted" policy has been reinstated properly. This can be tailored to run scripts on remote machines also.]]>
JeffWed, 24 Feb 2010 16:14:17 GMThttp://www.windowsitpro.com/article/windows-powershell/running-powershell-scripts-is-as-easy-as-1-2-3#commentsAnchor
Get Information About .msi Files with Just a Few Clickshttp://www.windowsitpro.com/article/deployment/get-information-about-msi-files-with-just-a-few-clicks#commentsAnchorThu, 11 Feb 2010 14:28:51 GMT
not critical but good to know sometimes]]>
ComputingThu, 11 Feb 2010 14:28:51 GMThttp://www.windowsitpro.com/article/deployment/get-information-about-msi-files-with-just-a-few-clicks#commentsAnchor
Embedding Double Quotes in the Commandhttp://www.windowsitpro.com/article/vbscript/embedding-double-quotes-in-the-command#commentsAnchorTue, 24 Nov 2009 08:49:47 GMT
To get the whole argument string including double quotes: Function GetArguments Dim oWMI, oScript, cScripts, aSplit Set oWMI = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2") Set cScripts = oWMI.ExecQuery("select * from win32_process where name=’wscript.exe’ or name=’cscript.exe’") For Each oScript in cScripts aSplit = Split(oScript.CommandLine, " """ & WScript.ScriptFullName & """ ", 2) If UBound(aSplit) > 0 Then GetArguments = Trim(aSplit(1)) Next End Function]]>
RonaldTue, 24 Nov 2009 08:49:47 GMThttp://www.windowsitpro.com/article/vbscript/embedding-double-quotes-in-the-command#commentsAnchor
What Applications Are Installed on the Computers in Your Network?http://www.windowsitpro.com/article/windows-powershell/what-applications-are-installed-on-the-computers-in-your-network-#commentsAnchorTue, 20 Oct 2009 12:24:44 GMT
Thanks for the article, it was very informative and the script is proving itself very useful. It’s too bad we aren’t able to run it with a wildcard in the computer name field, but I will deal :)]]>
JimmyTue, 20 Oct 2009 12:24:44 GMThttp://www.windowsitpro.com/article/windows-powershell/what-applications-are-installed-on-the-computers-in-your-network-#commentsAnchor
Rebooting Computers Using PowerShellhttp://www.windowsitpro.com/article/windows-management-instrumentation-wmi/rebooting-computers-using-powershell#commentsAnchorThu, 03 Sep 2009 13:30:05 GMT
I can download it fine as a magazine subscriber...]]>
DylanThu, 03 Sep 2009 13:30:05 GMThttp://www.windowsitpro.com/article/windows-management-instrumentation-wmi/rebooting-computers-using-powershell#commentsAnchor
Rebooting Computers Using PowerShellhttp://www.windowsitpro.com/article/windows-management-instrumentation-wmi/rebooting-computers-using-powershell#commentsAnchorWed, 02 Sep 2009 09:53:41 GMT
This really irritates me! I’ve got a subscription to the magazine, read through the article, follow the authors comments on how to download the code, only to find out I need to be a VIP member (for $279/yr) to get the code. What a joke! If that’s going to be the case, don’t put the article in your magazine.]]>
MikeWed, 02 Sep 2009 09:53:41 GMThttp://www.windowsitpro.com/article/windows-management-instrumentation-wmi/rebooting-computers-using-powershell#commentsAnchor
Scripting Password Prompts http://www.windowsitpro.com/article/jscript/scripting-password-prompts-#commentsAnchorMon, 25 May 2009 10:28:17 GMT
Hi all, note that I have added a 64-bit version (EditV64) that works on the x64 versions of Windows. You can get it at http://www.westmesatech.com. Regards, Bill]]>
BillMon, 25 May 2009 10:28:17 GMThttp://www.windowsitpro.com/article/jscript/scripting-password-prompts-#commentsAnchor
Running NTBackup from the Command Linehttp://www.windowsitpro.com/article/windows-2000/running-ntbackup-from-the-command-line#commentsAnchorMon, 30 Mar 2009 17:28:52 GMT
Hi sactechg, I am aware of the KB article, but just as with the /? option, it is missing important details (as I already noted about the /? option back in November 2004). Regards, Bill]]>
BillMon, 30 Mar 2009 17:28:52 GMThttp://www.windowsitpro.com/article/windows-2000/running-ntbackup-from-the-command-line#commentsAnchor
Running NTBackup from the Command Linehttp://www.windowsitpro.com/article/windows-2000/running-ntbackup-from-the-command-line#commentsAnchorTue, 24 Mar 2009 19:15:11 GMT
http://support.microsoft.com/kb/814583]]>
WilliamTue, 24 Mar 2009 19:15:11 GMThttp://www.windowsitpro.com/article/windows-2000/running-ntbackup-from-the-command-line#commentsAnchor
Use Group Policy to Distribute JRE With Its Automatic Update Feature Disabledhttp://www.windowsitpro.com/article/java/use-group-policy-to-distribute-jre-with-its-automatic-update-feature-disabled#commentsAnchorFri, 23 Jan 2009 08:33:10 GMT
I contacted the article’s author, Bill Stewart, about your experience. His advice is to first remove the software installation policy from the GPO, making sure all the JREs are uninstalled. Then, you should try the steps again, making sure to carefully follow the steps in the article. Thanks for reading Windows IT Pro! Karen Bemowski, senior editor Windows IT Pro, SQL Server Magazine]]>
KarenFri, 23 Jan 2009 08:33:10 GMThttp://www.windowsitpro.com/article/java/use-group-policy-to-distribute-jre-with-its-automatic-update-feature-disabled#commentsAnchor
Use Group Policy to Distribute JRE With Its Automatic Update Feature Disabledhttp://www.windowsitpro.com/article/java/use-group-policy-to-distribute-jre-with-its-automatic-update-feature-disabled#commentsAnchorThu, 22 Jan 2009 04:49:44 GMT
Hi, Thank you for posting this article. I have gone through these settings on my network but when PCs or Servers are rebooting they are stuck at applying setting and then " installing managed java update 11" before letting me log in again. Could you tell me if there is some thing wrong.]]>
ShahzadThu, 22 Jan 2009 04:49:44 GMThttp://www.windowsitpro.com/article/java/use-group-policy-to-distribute-jre-with-its-automatic-update-feature-disabled#commentsAnchor
Finding a VPN Connection's IP Addresshttp://www.windowsitpro.com/article/ip-addressing/finding-a-vpn-connection-s-ip-address#commentsAnchorWed, 21 Jan 2009 09:06:05 GMT
Articles with the "VIP Exclusive" tag (which appears under the articles’ titles) are typically accessible to VIP subscribers only. In case you’re not a VIP subscriber, I opened up the article for public viewing so that you can read the complete article. If you were already able to view the entire article but you thought the content wasn’t complete, please let me know the information you need. I can then contact the author to get that information. Karen Bemowski, senior editor Windows IT Pro, SQL Server Magazine]]>
KarenWed, 21 Jan 2009 09:06:05 GMThttp://www.windowsitpro.com/article/ip-addressing/finding-a-vpn-connection-s-ip-address#commentsAnchor
Finding a VPN Connection's IP Addresshttp://www.windowsitpro.com/article/ip-addressing/finding-a-vpn-connection-s-ip-address#commentsAnchorSun, 18 Jan 2009 23:42:26 GMT
the article is not complete]]>
JohnSun, 18 Jan 2009 23:42:26 GMThttp://www.windowsitpro.com/article/ip-addressing/finding-a-vpn-connection-s-ip-address#commentsAnchor
Command-Line Task Schedulerhttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchorWed, 22 Oct 2008 21:50:25 GMT
kk]]>
ericchow30 Wed, 22 Oct 2008 21:50:25 GMThttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchor
Finding a User’s Last Logonhttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchorWed, 15 Oct 2008 19:31:59 GMT
Great script, very useful, thanks!]]>
GlenWed, 15 Oct 2008 19:31:59 GMThttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchor
Parsing Error Codeshttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchorTue, 16 Sep 2008 06:36:33 GMT
Actually, if you purchased the magazine and are an "Registered User" you "have access to selected articles and the technical forums". I have paid for Windows IT Pro subscription, am a registered user, am logged in and have same result as rsschomburg, no download access for the HTA. ;(]]>
CraigTue, 16 Sep 2008 06:36:33 GMThttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchor
Parsing Error Codeshttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchorWed, 10 Sep 2008 11:15:22 GMT
Hi wtpmac, You need to register on the web site and log on first, and then you should be able to access the article and download the HTA. Regards, Bill Stewart]]>
BillWed, 10 Sep 2008 11:15:22 GMThttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchor
Parsing Error Codeshttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchorTue, 09 Sep 2008 18:08:29 GMT
How does this work? A partial article with an elipsis at the end with no link to the code and no way to continue the article. And I paid for the magazine!]]>
MacTue, 09 Sep 2008 18:08:29 GMThttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchor
Parsing Error Codeshttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchorSat, 06 Sep 2008 07:15:42 GMT
Choose "Printer Friendly" (gray box near top of article) to see the whole article. Search for "ErrorParser.hta" in Keyword Search box (top of page) to find article with link to download the code.]]>
BradSat, 06 Sep 2008 07:15:42 GMThttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchor
Parsing Error Codeshttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchorSat, 06 Sep 2008 03:29:03 GMT
Aha, I was mistaken. As a registered user only, I was not given access to the complete article nor the tool. My opinion has changed. Sorry.]]>
RobertSat, 06 Sep 2008 03:29:03 GMThttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchor
Parsing Error Codeshttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchorSat, 06 Sep 2008 03:22:22 GMT
I have not yet started scripting, but it seems inevitable as my computer science skills increase. I am happy preparing for such eventualities. Thank you for the tool.]]>
RobertSat, 06 Sep 2008 03:22:22 GMThttp://www.windowsitpro.com/article/html-application-hta/parsing-error-codes#commentsAnchor
Using a Logon to Determine a Distinguished Namehttp://www.windowsitpro.com/article/jscript/using-a-logon-to-determine-a-distinguished-name#commentsAnchorTue, 26 Aug 2008 11:44:08 GMT
dd]]>
DavidTue, 26 Aug 2008 11:44:08 GMThttp://www.windowsitpro.com/article/jscript/using-a-logon-to-determine-a-distinguished-name#commentsAnchor
Another Way to Run Programshttp://www.windowsitpro.com/article/vbscript/another-way-to-run-programs#commentsAnchorThu, 21 Aug 2008 09:44:52 GMT
Hi gjschipper75, That is a great question. Unfortunately, there’s no way that I can tell of retrieving a the exit code of a process created with the WMI Win32_Process Create method. To work around this, you could create a shell script (.cmd file) that writes the program’s exit code to a file. Regards, Bill Stewart]]>
BillThu, 21 Aug 2008 09:44:52 GMThttp://www.windowsitpro.com/article/vbscript/another-way-to-run-programs#commentsAnchor
Another Way to Run Programshttp://www.windowsitpro.com/article/vbscript/another-way-to-run-programs#commentsAnchorThu, 21 Aug 2008 03:49:18 GMT
It’s easy to run a remote script now. But i want to check the exit code of the remote vbs script. How is this possible?]]>
Gert JanThu, 21 Aug 2008 03:49:18 GMThttp://www.windowsitpro.com/article/vbscript/another-way-to-run-programs#commentsAnchor
Another Way to Run Programshttp://www.windowsitpro.com/article/vbscript/another-way-to-run-programs#commentsAnchorWed, 09 Jul 2008 09:50:30 GMT
zrer10: Thanks for your comment. Can you please provide more details on the problem you’re having? If I have more information, I can contact the author to see if he can solve the problem.]]>
AnneWed, 09 Jul 2008 09:50:30 GMThttp://www.windowsitpro.com/article/vbscript/another-way-to-run-programs#commentsAnchor
Per-Machine Printer Connections + Custom Plug-Inhttp://www.windowsitpro.com/article/jscript/per-machine-printer-connections-custom-plug-in#commentsAnchorWed, 25 Jun 2008 17:21:32 GMT
To all who couldn’t download the code: This article was formerly subscriber-only, so if you weren’t a Windows IT Pro subscriber, you could not access the code or read the entire article. I’ve made the article available to registered users for a limited time so you can download the code and read the full article. Note that if you aren’t a subscriber, for only $5.95 you can get a monthly pass that will let you access all subscriber-only articles for 30 days. (See link at the top of the page.) Thanks for reading!]]>
AnneWed, 25 Jun 2008 17:21:32 GMThttp://www.windowsitpro.com/article/jscript/per-machine-printer-connections-custom-plug-in#commentsAnchor
Per-Machine Printer Connections + Custom Plug-Inhttp://www.windowsitpro.com/article/jscript/per-machine-printer-connections-custom-plug-in#commentsAnchorWed, 25 Jun 2008 13:01:46 GMT
Yes, where is the download. I don’t see it on this site and have got on this site and checked for at least 4 different times.]]>
BrianWed, 25 Jun 2008 13:01:46 GMThttp://www.windowsitpro.com/article/jscript/per-machine-printer-connections-custom-plug-in#commentsAnchor
Another Way to Run Programshttp://www.windowsitpro.com/article/vbscript/another-way-to-run-programs#commentsAnchorFri, 20 Jun 2008 13:46:40 GMT
this doesnt work]]>
zrer10 Fri, 20 Jun 2008 13:46:40 GMThttp://www.windowsitpro.com/article/vbscript/another-way-to-run-programs#commentsAnchor
Finding a User’s Last Logonhttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchorFri, 13 Jun 2008 19:29:49 GMT
Mark, just send a 6-pack of any New Belgium Brewery beer to Windows IT Pro Editors, Penton Media, Loveland, Colorado, 80538--and we’ll see that Bill Stewart gets it. ;-) P.S. I will pass along your comment to Bill. I’m sure he’ll appreciate it!]]>
AnneFri, 13 Jun 2008 19:29:49 GMThttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchor
Finding a User’s Last Logonhttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchorFri, 13 Jun 2008 13:47:44 GMT
Excellent script. I’ll use this for years to come! Where do I send the six-pack of ?]]>
MarkFri, 13 Jun 2008 13:47:44 GMThttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchor
Command-Line Task Schedulerhttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchorMon, 28 Apr 2008 12:29:03 GMT
Julie, there is a blue "Download the Code Here" button that should be visible just above where the article text starts. If you are a subscriber and logged in, you’ll be able to see the button. Just click it to download the zip file.]]>
AnneMon, 28 Apr 2008 12:29:03 GMThttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchor
Command-Line Task Schedulerhttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchorMon, 28 Apr 2008 09:47:08 GMT
Hi Anne, I can’t seem to find the place to download the 45148.zip file. Please help. Thanks. Regards, Julie]]>
JulieMon, 28 Apr 2008 09:47:08 GMThttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchor
Dealing with XP SP2’s Security Warning Dialog Boxeshttp://www.windowsitpro.com/article/vbscript/dealing-with-xp-sp2-s-security-warning-dialog-boxes#commentsAnchorWed, 19 Mar 2008 05:44:44 GMT
jhgfjhgf]]>
fireeagle Wed, 19 Mar 2008 05:44:44 GMThttp://www.windowsitpro.com/article/vbscript/dealing-with-xp-sp2-s-security-warning-dialog-boxes#commentsAnchor
Scripting Password Prompts http://www.windowsitpro.com/article/jscript/scripting-password-prompts-#commentsAnchorThu, 13 Mar 2008 11:18:18 GMT
Hi all, note that the URL for the EditV32 utility has changed. The new URL is http://www.westmesatech.com. Regards, Bill]]>
BillThu, 13 Mar 2008 11:18:18 GMThttp://www.windowsitpro.com/article/jscript/scripting-password-prompts-#commentsAnchor
10 Keys to Command Shell Scriptinghttp://www.windowsitpro.com/article/performance/10-keys-to-command-shell-scripting#commentsAnchorThu, 13 Mar 2008 11:15:54 GMT
Hi all, note that the URL has changed for the utilities written by the author. The URL is now http://www.westmesatech.com. Regards, Bill]]>
BillThu, 13 Mar 2008 11:15:54 GMThttp://www.windowsitpro.com/article/performance/10-keys-to-command-shell-scripting#commentsAnchor
Finding Stale Accounts in Active Directoryhttp://www.windowsitpro.com/article/jscript/finding-stale-accounts-in-active-directory#commentsAnchorThu, 06 Mar 2008 13:50:30 GMT
This issue has been resolved. The accounts I was looking for had already been disabled, therefore they did not show up in the scan.]]>
JOEThu, 06 Mar 2008 13:50:30 GMThttp://www.windowsitpro.com/article/jscript/finding-stale-accounts-in-active-directory#commentsAnchor
Finding Stale Accounts in Active Directoryhttp://www.windowsitpro.com/article/jscript/finding-stale-accounts-in-active-directory#commentsAnchorTue, 04 Mar 2008 12:34:57 GMT
The script did not work for me. Am I supposed to modify the script or should it run as is?]]>
JOETue, 04 Mar 2008 12:34:57 GMThttp://www.windowsitpro.com/article/jscript/finding-stale-accounts-in-active-directory#commentsAnchor
Rem: Mapping a Local IP Printerhttp://www.windowsitpro.com/article/tcpip/rem-mapping-a-local-ip-printer#commentsAnchorThu, 07 Feb 2008 13:07:11 GMT
This website’s articles don’t work...]]>
JeffThu, 07 Feb 2008 13:07:11 GMThttp://www.windowsitpro.com/article/tcpip/rem-mapping-a-local-ip-printer#commentsAnchor
Got Something to Say? Display a Message of the Dayhttp://www.windowsitpro.com/article/html-application-hta/got-something-to-say-display-a-message-of-the-day#commentsAnchorFri, 28 Dec 2007 17:24:29 GMT
Nice article Bill. I wrote something similar using VBScript in the HTA. You can find it here: http://www.jhouseconsulting.com/index.php/blog/2007/12/28/creating-a-message-of-the-day-banner-using-a-hta/. Cheers, Jeremy.]]>
JeremyFri, 28 Dec 2007 17:24:29 GMThttp://www.windowsitpro.com/article/html-application-hta/got-something-to-say-display-a-message-of-the-day#commentsAnchor
Rem: Mapping a Local IP Printerhttp://www.windowsitpro.com/article/tcpip/rem-mapping-a-local-ip-printer#commentsAnchorTue, 13 Nov 2007 03:31:32 GMT
although the script said that it added the printer, when i went to control panel printers i couldnt find it.]]>
hudaqadura Tue, 13 Nov 2007 03:31:32 GMThttp://www.windowsitpro.com/article/tcpip/rem-mapping-a-local-ip-printer#commentsAnchor
Registry Reading and Writing Made Simple, Part 1http://www.windowsitpro.com/article/jscript/registry-reading-and-writing-made-simple-part-1#commentsAnchorMon, 12 Nov 2007 07:44:29 GMT
http://www.scriptingprovip.com/registration/index.cfm]]>
asdf516 Mon, 12 Nov 2007 07:44:29 GMThttp://www.windowsitpro.com/article/jscript/registry-reading-and-writing-made-simple-part-1#commentsAnchor
Registry Reading and Writing Made Simple, Part 1http://www.windowsitpro.com/article/jscript/registry-reading-and-writing-made-simple-part-1#commentsAnchorMon, 12 Nov 2007 07:35:31 GMT
The introduction of Windows Management Instrumentation (WMI) as a core OS component in Windows 2000 made many administrative scripting tasks far easier, but Microsoft has recognized that registry management still plays an important role in Windows management.]]>
tttMon, 12 Nov 2007 07:35:31 GMThttp://www.windowsitpro.com/article/jscript/registry-reading-and-writing-made-simple-part-1#commentsAnchor
Command-Line Task Schedulerhttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchorFri, 21 Sep 2007 13:36:49 GMT
The Download the Code Here button should be visible at the top of the article (under the title information and above the ad). Click that button to download the zip file. If you still are unable to download the code, please let me know and I’ll help you get the problem resolved. Thanks for reading! Anne Grubb, Web Lead Editor, Windows IT Pro agrubb@windowsitpro.com]]>
AnneFri, 21 Sep 2007 13:36:49 GMThttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchor
Command-Line Task Schedulerhttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchorWed, 19 Sep 2007 07:28:45 GMT
Man, where is hot link to download 45148.zip ? I am subscriber, logged in but still not finding download link anywhere on the page.]]>
KINTESHWed, 19 Sep 2007 07:28:45 GMThttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchor
Finding a User’s Last Logonhttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchorWed, 08 Aug 2007 05:11:40 GMT
Can somoene post the article by email]]>
SasaWed, 08 Aug 2007 05:11:40 GMThttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchor
Finding a User’s Last Logonhttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchorTue, 07 Aug 2007 16:42:28 GMT
Can’t see the article either...I have a paid subscription for this as well.]]>
TobyTue, 07 Aug 2007 16:42:28 GMThttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchor
Finding a User’s Last Logonhttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchorTue, 07 Aug 2007 14:50:20 GMT
cant read the article]]>
SasaTue, 07 Aug 2007 14:50:20 GMThttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchor
Finding a User’s Last Logonhttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchorThu, 02 Aug 2007 11:14:57 GMT
I logon, but can’t access this article.]]>
ChuckThu, 02 Aug 2007 11:14:57 GMThttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchor
Finding a User’s Last Logonhttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchorFri, 06 Jul 2007 09:48:01 GMT
I would love to comment, but since Penton can’t even give me a return email telling me why our account doesn’t work, I CAN’T READ THE ARTICLE!!!!!!!!!!!11]]>
drewbfrank Fri, 06 Jul 2007 09:48:01 GMThttp://www.windowsitpro.com/article/jscript/finding-a-user-s-last-logon#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorFri, 08 Jun 2007 01:26:55 GMT
Followed the advice from spallison@southdowns.ac.uk’s post from January 08 and found the download link. Thanks!]]>
ChristopherFri, 08 Jun 2007 01:26:55 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorFri, 08 Jun 2007 01:26:52 GMT
Followed the advice from spallison@southdowns.ac.uk’s post from January 08 and found the download link. Thanks!]]>
ChristopherFri, 08 Jun 2007 01:26:52 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorFri, 08 Jun 2007 01:15:04 GMT
Goodmorning, We are migrating printers to new file/print clusters. This tool looks very useful. Can someone point me to the download link? Thanks, NDAskani]]>
ChristopherFri, 08 Jun 2007 01:15:04 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Scripting Password Prompts http://www.windowsitpro.com/article/jscript/scripting-password-prompts-#commentsAnchorWed, 06 Jun 2007 16:26:47 GMT
Hi ajperez, What problem would it solve (eliminating the Cancel button)? Bill]]>
BillWed, 06 Jun 2007 16:26:47 GMThttp://www.windowsitpro.com/article/jscript/scripting-password-prompts-#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorWed, 06 Jun 2007 02:22:55 GMT
I’m logged in and still can’t see the download option. Just about sums up my ability to access the resources of a subscriber of 8 years. No more!!!]]>
BrianWed, 06 Jun 2007 02:22:55 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Scripting Password Prompts http://www.windowsitpro.com/article/jscript/scripting-password-prompts-#commentsAnchorSun, 03 Jun 2007 01:36:42 GMT
Nice but, Can the Cancel button be omitted? Thanks]]>
AlfonsoSun, 03 Jun 2007 01:36:42 GMThttp://www.windowsitpro.com/article/jscript/scripting-password-prompts-#commentsAnchor
Customize the Windows Command Shellhttp://www.windowsitpro.com/article/scripting/customize-the-windows-command-shell#commentsAnchorMon, 23 Apr 2007 19:32:12 GMT
what]]>
jeffMon, 23 Apr 2007 19:32:12 GMThttp://www.windowsitpro.com/article/scripting/customize-the-windows-command-shell#commentsAnchor
Rename Files by Using Regular Expressionshttp://www.windowsitpro.com/article/windows-script-host-wsh/rename-files-by-using-regular-expressions#commentsAnchorFri, 20 Apr 2007 01:03:41 GMT
Does not have access to this script..]]>
john-scripting Fri, 20 Apr 2007 01:03:41 GMThttp://www.windowsitpro.com/article/windows-script-host-wsh/rename-files-by-using-regular-expressions#commentsAnchor
Customize the Windows Command Shellhttp://www.windowsitpro.com/article/scripting/customize-the-windows-command-shell#commentsAnchorThu, 12 Apr 2007 02:39:39 GMT
it would be nice if I could view it]]>
sfinniganThu, 12 Apr 2007 02:39:39 GMThttp://www.windowsitpro.com/article/scripting/customize-the-windows-command-shell#commentsAnchor
Customize the Windows Command Shellhttp://www.windowsitpro.com/article/scripting/customize-the-windows-command-shell#commentsAnchorWed, 11 Apr 2007 11:03:13 GMT
Excellent – more please]]>
ChrisWed, 11 Apr 2007 11:03:13 GMThttp://www.windowsitpro.com/article/scripting/customize-the-windows-command-shell#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorFri, 06 Apr 2007 09:32:58 GMT
You must be a suscriber to download the files. Once you’ve logged in you should see it where mcgis previously posted.]]>
MarkFri, 06 Apr 2007 09:32:58 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Scripting Cached Exchange Mode http://www.windowsitpro.com/article/vbscript/scripting-cached-exchange-mode-#commentsAnchorFri, 23 Mar 2007 14:39:24 GMT
Hi Twoturntables, I recommend that you add it as a logon script in a GPO. Microsoft Knowledge Base article 322241 describes how to do this. HTH, Bill]]>
BillFri, 23 Mar 2007 14:39:24 GMThttp://www.windowsitpro.com/article/vbscript/scripting-cached-exchange-mode-#commentsAnchor
Scripting Cached Exchange Mode http://www.windowsitpro.com/article/vbscript/scripting-cached-exchange-mode-#commentsAnchorFri, 23 Mar 2007 10:28:16 GMT
How can this be linked or added to an existing login script? Thanks.]]>
stevenFri, 23 Mar 2007 10:28:16 GMThttp://www.windowsitpro.com/article/vbscript/scripting-cached-exchange-mode-#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorSun, 11 Mar 2007 10:14:21 GMT
you will see the download code option when you are NOT in printer friendly view.....good luck-]]>
JOHNSun, 11 Mar 2007 10:14:21 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorSun, 04 Feb 2007 14:30:41 GMT
Yeah gret article but I can’t get it all or the files and my number isn’t allowing me to associate my subscription with the website (stupid idea).]]>
markSun, 04 Feb 2007 14:30:41 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorWed, 24 Jan 2007 07:50:19 GMT
Hi, I have the same problem, couldn’t find the download button. Jean-Marc]]>
Jean-MarcWed, 24 Jan 2007 07:50:19 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Display CSV Files in an HTAhttp://www.windowsitpro.com/article/html-application-hta/display-csv-files-in-an-hta#commentsAnchorWed, 24 Jan 2007 03:25:35 GMT
very usefull for my csv data files]]>
rwdavisjrWed, 24 Jan 2007 03:25:35 GMThttp://www.windowsitpro.com/article/html-application-hta/display-csv-files-in-an-hta#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorWed, 17 Jan 2007 09:29:15 GMT
XP firewall appears to interfere w/ program - looks like its working over 135?]]>
EDWed, 17 Jan 2007 09:29:15 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Rem: Mapping a Local IP Printerhttp://www.windowsitpro.com/article/tcpip/rem-mapping-a-local-ip-printer#commentsAnchorTue, 16 Jan 2007 15:31:11 GMT
Click Printer Friendly at the top right of the article & you will have the full article. Printing is not exact, (some lines truncate). All of the article appears to be there though.]]>
dstevensTue, 16 Jan 2007 15:31:11 GMThttp://www.windowsitpro.com/article/tcpip/rem-mapping-a-local-ip-printer#commentsAnchor
Command-Line Task Schedulerhttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchorTue, 16 Jan 2007 13:24:01 GMT
I can’t seem to find the link to the jtrun.vbs file you mentioned in this article. Any idea where I can get a look at it? Thanks, Todd McClintic tmcclint@yahoo.com]]>
tmcclint Tue, 16 Jan 2007 13:24:01 GMThttp://www.windowsitpro.com/article/task-scheduling/command-line-task-scheduler#commentsAnchor
Rem: Mapping a Local IP Printerhttp://www.windowsitpro.com/article/tcpip/rem-mapping-a-local-ip-printer#commentsAnchorTue, 16 Jan 2007 08:46:03 GMT
because the first two paragraphs don’t say anything useful]]>
dstevensTue, 16 Jan 2007 08:46:03 GMThttp://www.windowsitpro.com/article/tcpip/rem-mapping-a-local-ip-printer#commentsAnchor
Rem: Mapping a Local IP Printerhttp://www.windowsitpro.com/article/tcpip/rem-mapping-a-local-ip-printer#commentsAnchorMon, 15 Jan 2007 10:17:28 GMT
Why?]]>
HowardMon, 15 Jan 2007 10:17:28 GMThttp://www.windowsitpro.com/article/tcpip/rem-mapping-a-local-ip-printer#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorThu, 11 Jan 2007 15:49:58 GMT
Downloaded and installed just fine, and works great on the local computer on which it is installed. Doesn’t seem to work for remote computers on the network. Logged in as myself, however I am a member of the Domain Admin group. When I input the name of another computer, it returns 0X800A01CE and says that the remote computer cannot be found or is not running the spooler service. Neither of these are actually true. This would be a super tool as I am slated to replace my print spooler next month.]]>
JamesThu, 11 Jan 2007 15:49:58 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorMon, 08 Jan 2007 16:39:49 GMT
I too couldnt see the download code button, but i found a way round it, click on Resources and then code library and type in search "pmpmgr.hta" and it should come up with the article and hey a download code link! :)]]>
SimonMon, 08 Jan 2007 16:39:49 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorFri, 05 Jan 2007 09:32:29 GMT
Hi, I have the same problem with downloads. I’m loged in, and not only the download bottom don’t appear, but the page is full of subscribe now messages. Strange Please resolve this problem Thanks João Mendes]]>
JoãoFri, 05 Jan 2007 09:32:29 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorFri, 05 Jan 2007 08:37:17 GMT
I currently have a subscription to your Magazine. Why can’t I get to the download?]]>
JohnFri, 05 Jan 2007 08:37:17 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Display CSV Files in an HTAhttp://www.windowsitpro.com/article/html-application-hta/display-csv-files-in-an-hta#commentsAnchorThu, 04 Jan 2007 18:53:21 GMT
Nice but where is the rest of the code.]]>
KHALEDThu, 04 Jan 2007 18:53:21 GMThttp://www.windowsitpro.com/article/html-application-hta/display-csv-files-in-an-hta#commentsAnchor
Scripting Password Prompts http://www.windowsitpro.com/article/jscript/scripting-password-prompts-#commentsAnchorThu, 04 Jan 2007 12:37:10 GMT
The jscipt InputBox DLL is priceless!]]>
JJThu, 04 Jan 2007 12:37:10 GMThttp://www.windowsitpro.com/article/jscript/scripting-password-prompts-#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorThu, 04 Jan 2007 03:29:29 GMT
called customer support and it was a profile issue. it is fixed, for now.]]>
ursrauThu, 04 Jan 2007 03:29:29 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorThu, 04 Jan 2007 03:16:05 GMT
This is absolutely crazy. At the subscription prices of VIP memberships and then the download the code buttons don’t work. What a rip-off. Yes, I am logged in, and yes I do have a current VIP membership.]]>
ursrauThu, 04 Jan 2007 03:16:05 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorWed, 03 Jan 2007 15:09:32 GMT
Once you set up the printers on the target machine using this script, is it possible to remove them manually from the workstation without using this script to remove?]]>
IANWed, 03 Jan 2007 15:09:32 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Display CSV Files in an HTAhttp://www.windowsitpro.com/article/html-application-hta/display-csv-files-in-an-hta#commentsAnchorTue, 02 Jan 2007 11:23:41 GMT
The HTA script is missing from the zip file. The zip only includes the two functions.]]>
MikeTue, 02 Jan 2007 11:23:41 GMThttp://www.windowsitpro.com/article/html-application-hta/display-csv-files-in-an-hta#commentsAnchor
Another Way to Run Programshttp://www.windowsitpro.com/article/vbscript/another-way-to-run-programs#commentsAnchorSun, 31 Dec 2006 22:17:24 GMT
asdas]]>
rblackk Sun, 31 Dec 2006 22:17:24 GMThttp://www.windowsitpro.com/article/vbscript/another-way-to-run-programs#commentsAnchor
Display CSV Files in an HTAhttp://www.windowsitpro.com/article/html-application-hta/display-csv-files-in-an-hta#commentsAnchorThu, 28 Dec 2006 12:04:47 GMT
There is no code in the zip file other than a couple excerpts.]]>
TestThu, 28 Dec 2006 12:04:47 GMThttp://www.windowsitpro.com/article/html-application-hta/display-csv-files-in-an-hta#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorWed, 27 Dec 2006 06:09:06 GMT
I’ve had problems for several days myself. Yesterday I called and customer service got me in. Today I log in and once again I don’t have access]]>
DWAYNEWed, 27 Dec 2006 06:09:06 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor
Per-Machine Printer GUIhttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchorTue, 26 Dec 2006 22:11:49 GMT
Perhaps it is just me, yet I have been staring at this page for 10 minutes with both Firefox and Internet Explorer and I am unable to locate the "download the code" link.]]>
MatthewTue, 26 Dec 2006 22:11:49 GMThttp://www.windowsitpro.com/article/html-application-hta/per-machine-printer-gui#commentsAnchor