ss64.com
Open in
urlscan Pro
216.92.186.205
Public Scan
URL:
https://ss64.com/vb/shell.html
Submission: On April 26 via manual from US — Scanned from DE
Submission: On April 26 via manual from US — Scanned from DE
Form analysis
1 forms found in the DOMGET https://www.google.com/search
<form action="https://www.google.com/search" method="get">
<input type="text" name="q" id="qu" size="27" maxlength="255">
<input class="submit mousetrap" value="Search" id="btn" type="submit">
<input type="hidden" name="sitesearch" value="ss64.com/vb/">
</form>
Text Content
WE VALUE YOUR PRIVACY We and our partners store and/or access information on a device, such as cookies and process personal data, such as unique identifiers and standard information sent by a device for personalised ads and content, ad and content measurement, and audience insights, as well as to develop and improve products. With your permission we and our partners may use precise geolocation data and identification through device scanning. You may click to consent to our and our partners’ processing as described above. Alternatively you may click to refuse to consent or access more detailed information and change your preferences before consenting. Please note that some processing of your personal data may not require your consent, but you have a right to object to such processing. Your preferences will apply to this website only. You can change your preferences at any time by returning to this site or visit our privacy policy. DISAGREEMORE OPTIONSAGREE * SS64 * VBScript * How-to * THE WSCRIPT.SHELL + SHELL.APPLICATION OBJECTS Provides access to OS Shell methods. Syntax Set objShell = CreateObject("Wscript.Shell") Methods .AppActivate 'Activate running command. .Run 'Run an application .TileVertically 'Tile app windows .RegRead 'Read from registry .RegDelete 'Delete from registry .RegWrite 'Write to the registry Syntax Set objShell = CreateObject("Shell.Application") Methods .CanStartStopService("ServiceName") 'Can the current user start/stop the named service? .CascadeWindows 'Arrange app windows .EjectPC 'Eject PC from a docking station .Explore(FolderPath) 'Open a folder .FileRun 'Open the File-run dialogue .GetSystemInformation("PhysicalMemoryInstalled") 'Physical memory installed, in bytes. .IsServiceRunning("ServiceName") 'Check if a Windows service is running .MinimizeAll 'Minimize everything .NameSpace("C:\\") 'Create an object reference to a folder .ServiceStart("ServiceName", true) 'Start a windows service .ServiceStop("ServiceName", true) 'Stop a windows service .SetTime 'Open the set time GUI .ShellExecute 'Run a script or application .ShutdownWindows .TileHorizontally 'Tile app windows .TileVertically 'Tile app windows .ToggleDesktop 'Show/Hide Desktop .TrayProperties 'Display the Taskbar/Start Menu Properties .UndoMinimizeAll 'Un-Minimize everything Examples Dim objShell Set objShell = WScript.CreateObject("WScript.Shell") objShell.Run "C:\Demo" Set objShell = Nothing “It is possible to store the mind with a million facts and still be entirely uneducated” ~ Alec Bourne Related: .AppActivate - Activate running command. .Application BrowseForFolder/Open .Run a command. -------------------------------------------------------------------------------- Copyright © 1999-2022 SS64.com Some rights reserved