Scripts

VMware Control Menu

This script is a simple graphical user interface (GUI) tool for managing VMware virtual machines (VMs). Using FreeSimpleGUI, it provides buttons to start, stop, list, and restart VMs without blocking the GUI. It checks if the VMware process (vmware.exe) is running and restarts the VM if necessary. The script uses subprocess.Popen for executing commands in […]


Posted in Scripts, Tech

|

Comments Off on VMware Control Menu

Filezilla auto upload file after editing

Filezilla auto upload file after editing Official Answer is ==> Auto-uploading of changed files will never come, as FileZilla cannot detect when the external editor has really finished saving the file.   Yeah,yeah Great Dev’s little productivity.   How to Use : Download  and install autoit Lauch The Script Script will waiting for the window  […]


Posted in Scripts, Tech

|

Leave a comment

Autoit click on button which is on Frame

Autoit click on button which is on Frame This is working code for Eset Gui(version 10.1.2050.0). For going to : Setup ==> Advanced Setup==> Update ==> Profiles ==> Updates ==> Modules Updates #include #RequireAdmin AutoItSetOption(“MouseCoordMode”, 0) Run(“C:\Program Files\ESET\ESET Security\egui.exe”) Sleep(500) WinWait(‘ESET Endpoint Antivirus’) WinActivate(‘ESET Endpoint Antivirus’) MouseClick(‘primary’, 77, 216,2) Sleep(500) MouseClick(‘primary’, 943, 649,2) WinWait(‘Advanced setup […]


Posted in Prog, Scripts, Tech

|

Leave a comment

vbscript To Launch Pstart

What does  vbscript : Lauch Application , kill Application , Timeout For Application ,  + simulates real   “ctrl alt s” shortcut for an application. in this case for Pstart  


Posted in Scripts, Tech

|

Leave a comment

FILE SELECTOR DIALOG IN BATCH + CANCEL Button

FILE SELECTOR DIALOG IN BATCH + CANCEL Button       @echo OFF ::dimm edit = cancel action is added :start :: DDX set file at zero value set “file=” call :filedialog file exit /b :filedialog :: &file setlocal set dialog=”about:<input type=file id=FILE><script>FILE.click();new ActiveXObject set dialog=%dialog%(‘Scripting.FileSystemObject’).GetStandardStream(1).WriteLine(FILE.value); set dialog=%dialog%close();resizeTo(0,0);</script>” for /f “tokens=* delims=” %%p in (‘mshta.exe […]


Posted in Scripts, Tech

|

Leave a comment