spudw2k Posted November 6, 2007 Share Posted November 6, 2007 (edited) Edit: I am doing an overhaul of this script. The latest dev release is in my last post on this thread. Features Coming w/ the New Version Parallel Processing Mailslot Utilization for Child Processes (Workers) Settings / Preferences Parallel Process Limit PSExec Options Logging Filtering (eventually...maybe release 2.0) Below is the OP and the original script. This is a script I made that is basically a front-end for PSEXEC by sysinternals. I built it becuase we use a tool (at my work) called RemoteExec which is fairly expensive. This isn't quite as nice, but real close. This tool is intended for Domain Administrators. Requires admin rights on machines executing. *Sourcecode Requires psexec.exe (downloadable from Here )Fixed: Remove Button and Browse Func Working On: Code Cleanup Parallel PSexec Execution Unfinished features: Hardware/Software Filtering using WMIFuture feature: Alternate Credential ability remoteit.au3 Edited April 9, 2015 by spudw2k Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
realkiller Posted November 7, 2007 Share Posted November 7, 2007 (edited) nice:D, but can't get the browse function working at tab host Edited November 7, 2007 by realkiller Remote 3.1 BetaRemote Media Player ControlUSB Security 1.2 Link to comment Share on other sites More sharing options...
spudw2k Posted November 7, 2007 Author Share Posted November 7, 2007 I am performing an LDAP query for the browse function. Func GetRootDSE() $RootDSE = ObjGet("LDAP://RootDSE") Return $RootDSE.get( "DefaultNamingContext" ) EndFunc Func GetComputers($domainname) $objComputers = ObjGet("LDAP://CN=Computers," & $domainname) local $strComputers For $obj In $objComputers $strComputers = $strComputers & $obj.Name & "," Next $obj = "" $objComputers = "" $strComputers = StringLeft($strComputers,StringLen($strComputers)-1) $strComputers = StringReplace($strComputers,"CN=","") $arrComputers = StringSplit($strComputers,",") _ArrayDelete($arrComputers,0) _ArraySort($arrComputers) Return $arrComputers EndFunc This function only works in a domain or active directory environment. Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
MetalSpongebob Posted November 28, 2007 Share Posted November 28, 2007 I have put psexec.eexe in c:\ but when try to compile script I get error:"Error Adding file psexec.exe" How I can resolve that? Noob but ethical Link to comment Share on other sites More sharing options...
paullab Posted November 28, 2007 Share Posted November 28, 2007 I have put psexec.eexe in c:\ but when try to compile script I get error:"Error Adding file psexec.exe"How I can resolve that?Have a look at the pstools front end in this post Here Wallpaper Rotatorwith overlay, Loop through a folder of wallpaper & another of overlay, then create a combined image and set it as the wallpaperE-Mail passthru, Send any file, even executables via e-mail as plain text. The recipient can then later re-construct them.Slideshow widget, A slideshow widget similar to the Vista onePredictive typing using the Numpad, Predictive typing using the numpad of a keyboar similar to that on a mobile phone (the key is the .t16 file).PSTools Front End, For Remote Admin. Just makes life a lot easier (Demonstrates executing external programs and passing parameters, tabbed form Handling STDIN/STDERR)FTP Helper application Up and Download files from an FTP server demonstrates this and Tooltray TipsShow a Map of your Post-codes/Zip Codes, Uses the Clipboard, Hotkeys, the system tray (incl. menus)Disc/CD/DVD Catalogue, Ideal for all those Covermount Discs (Demonstrates Array handling, executing DOS programs, handling STDIN/STDOUT recursive directory reads, file searching.)YAST , Yet another Stopwatch/Timer (Uses a hotkey, Copies to clipboard, handles multiple events and stays on top)Keyboard Status Indicator , Indicates status of NumLock, Caps Lock and Scroll Lock Keys, demonstrates API calling & System tray Icon Toggling Link to comment Share on other sites More sharing options...
Stealth111 Posted November 29, 2007 Share Posted November 29, 2007 Does not work with the current newest release of AutoIt.. Error looking for GuiList.au3... Link to comment Share on other sites More sharing options...
spudw2k Posted December 4, 2007 Author Share Posted December 4, 2007 I have put psexec.eexe in c:\ but when try to compile script I get error:"Error Adding file psexec.exe"How I can resolve that?psexec.exe must be in the same dir as the script when you compile it. That should work. Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
spudw2k Posted December 4, 2007 Author Share Posted December 4, 2007 (edited) Does not work with the current newest release of AutoIt.. Error looking for GuiList.au3...Ok, I'm looking into it. Looks like UDF for Gui Listview changed names (in version 3.2.10.0) to GuiListView.au3. Reflecting change in original post.\There appear to be other issues since the version upgrade. debugging...Ok, I think I got all the bugs. Pretty much just function renaming to reflect UDFs. I updated the source above and am planing on implementing the ability to supply alternate login credentials.I spoke too soon....still more bugs, please hold. Edited December 21, 2007 by spudw2k Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
spudw2k Posted December 21, 2007 Author Share Posted December 21, 2007 (edited) Ok, I finally got around to fixing all the problems since the new version of AutoIt. It is working again like it was. I simplified the hostlist file load and save functions. Edited March 12, 2008 by spudw2k Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
tbird2340 Posted April 9, 2008 Share Posted April 9, 2008 Ok, I finally got around to fixing all the problems since the new version of AutoIt. It is working again like it was. I simplified the hostlist file load and save functions.Do you have a list of what the result codes mean?Thanks Link to comment Share on other sites More sharing options...
spudw2k Posted April 9, 2008 Author Share Posted April 9, 2008 no, but if you give me the code and what caused the error to occur I'd be happy to help. I could also add an error handler of sorts. Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
FATIHTALI Posted April 3, 2009 Share Posted April 3, 2009 program doesnt work on newest AutoIt.I am recieving that errors.>C:\Program Files\AutoIt3\SciTE\..\au3check.exe "C:\remoteit.au3"AutoIt3 Syntax Checker v1.54.8 Copyright © Tylo 2007C:\remoteit.au3(17,25) : WARNING: $program: possibly used before declaration. If GUICtrlRead($program) ~~~~~~~~~~~~~~~~~~~~~~~^C:\remoteit.au3(17,71) : WARNING: $hostlist: possibly used before declaration. If GUICtrlRead($program) <> "" and _GUICtrlListBox_GetCount($hostlist) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^C:\remoteit.au3(18,30) : WARNING: $btnExecute: possibly used before declaration. GUICtrlSetState($btnExecute, ~~~~~~~~~~~~~~~~~~~~~~~~~~~^C:\remoteit.au3(38,63) : WARNING: $gui: possibly used before declaration. $tGui = GUICreate("Browse for Hosts",250,326,-1,-1,"","",$gui) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^C:\remoteit.au3(112,37) : WARNING: $tListView: possibly used before declaration. $list = GUICtrlGetHandle($tListView) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^C:\remoteit.au3(196,61) : WARNING: $ES_READONLY: possibly used before declaration. $program = GUICtrlCreateInput("",90,57,250,22,$ES_READONLY+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^C:\remoteit.au3(196,77) : WARNING: $ES_AUTOHSCROLL: possibly used before declaration. $program = GUICtrlCreateInput("",90,57,250,22,$ES_READONLY+$ES_AUTOHSCROLL) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^C:\remoteit.au3(196,61) : ERROR: $ES_READONLY: undeclared global variable. $program = GUICtrlCreateInput("",90,57,250,22,$ES_READONLY+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^C:\remoteit.au3 - 1 error(s), 7 warning(s)>Exit code: 2 Time: 1.836no, but if you give me the code and what caused the error to occur I'd be happy to help. I could also add an error handler of sorts. Startup Agent It is my small Startup Agent. You can install programs on startup Domain pc without Admin rights. Link to comment Share on other sites More sharing options...
spudw2k Posted April 3, 2009 Author Share Posted April 3, 2009 (edited) Looks like they moved those vars into EditConstants.au3 You can add an Include for it at the top of the script. Not sure if the rest works either. There appear to be other issues as well. I'll check it out when I have time. Edited April 3, 2009 by spudw2k Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
spudw2k Posted May 20, 2010 Author Share Posted May 20, 2010 (edited) I made an update to this. Works as it did before. I'm tempted to implement the "Parallize PSexec" made up by cherdeg into this script. Will update when/if it happens.See 1st for Latest Update. Edited April 9, 2015 by spudw2k Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
enaiman Posted May 21, 2010 Share Posted May 21, 2010 psexec works nice ... when it's not hanging ... I use it quite often and sometimes, for unknown reason, it decides to hang and every next execution attempts fails. I haven't found a solution yet to this problem; I need everytime to terminate the remote service it starts ... been looking for a replacements but didn't find one yet. SNMP_UDF ... for SNMPv1 and v2c so far, GetBulk and a new example script wannabe "Unbeatable" Tic-Tac-Toe Paper-Scissor-Rock ... try to beat it anyway :) Link to comment Share on other sites More sharing options...
spudw2k Posted May 21, 2010 Author Share Posted May 21, 2010 psexec works nice ... when it's not hanging ... I use it quite often and sometimes, for unknown reason, it decides to hang and every next execution attempts fails. I haven't found a solution yet to this problem; I need [sic]everytime to terminate the remote service it starts ... been looking for a replacements but didn't find one yet. From my experience, psexec hangs when an interactive process is run non-interactively, if that makes sense. If you don't tell a program to run interactively and it (let's say) prompts a message box to be clicked, the user will never see the box, hence it will not ever get clicked and will just hang. I'm sure there's other (repeatable) instances where it hangs, but the interaction factor, or maybe even an error message could hold up the process. Just my two cents. Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
enaiman Posted June 6, 2010 Share Posted June 6, 2010 That's an interresting idea - thanks SNMP_UDF ... for SNMPv1 and v2c so far, GetBulk and a new example script wannabe "Unbeatable" Tic-Tac-Toe Paper-Scissor-Rock ... try to beat it anyway :) Link to comment Share on other sites More sharing options...
cherdeg Posted June 10, 2010 Share Posted June 10, 2010 (edited) I'm tempted to implement the "Parallize PSexec" made up by cherdeg into this script.I need to remark that the work to "Parallize PSexec" was done mostly by MANADAR for a function to ping lots of hosts in parallel. I simply modified it to suit my needs. It's always nice to get credit, but this time all the credit belongs to MANADAR. Edited June 11, 2010 by cherdeg Link to comment Share on other sites More sharing options...
gtifsi Posted August 2, 2010 Share Posted August 2, 2010 Pretty nice app, good work. Link to comment Share on other sites More sharing options...
spudw2k Posted April 2, 2015 Author Share Posted April 2, 2015 (edited) Well, it's been several years since I put this together and decided to revisit it. Of course it doesn't work out-of-the-box anymore. As I have learned a lot since I put this together, I decided to give it a go at updating it. I plan to incorporate more intermediate/advanced methods as well as exhibit best practices and coding standards. A few specific things I plan to address: Change code to OnEvent execution instead of large While loop - Done Parallelize execution via multi-processing - Done Utilize STDOUT in lieu of using temp files - In Progress Incorporate multi-process communication through >Mailslots - Done Just working on the GUI so far...a good way to go still, but here is my new "GUI" code so far. Things To Do: Create Settings GUI Parallel / Worker Execution Testing Mailbox Communication Status Window Interaction Host List Browser PSExec Integration Log / Export Capability - In Progress Add Start/Finish Info To Execution Status Bug Fixes - Ongoing Please keep in mind that it is not fully functional. The PSEXEC integration is not yet in place. For now it is merely a GUI will some parallel processing pieces that utilize a MailSlot for process communication. 0.2.6.zip Edited April 9, 2015 by spudw2k NomadCF 1 Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now