Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "List": {
- "dir": "dir /b",
- "dira": "dir /a",
- "dirsb": "dir /s /b",
- "doskey": "DOSKEY /history",
- "tree": "tree /f /a",
- "psls": "Get-ChildItem",
- "pslsr": "Get-ChildItem -Recurse -Force",
- "program": "DIR /s /w /p \"C:\\Program Files\"",
- "dir_hidden_windows": "DIR /s /q /a:sh /p C:\\Windows",
- "dir_csv_export": "DIR C:\\*.csv /s /b > C:\\Users\\tim\\Desktop\\csvfiles.txt",
- "dir_append_list": "DIR /W /B >> LIST.EXT",
- "dir_program_files_log": "DIR C:\\\"Program Files\" >> %COMPUTERNAME%-IS.txt",
- "list_c_drive": "DIR /S /B /A C:\\ >> %COMPUTERNAME%-LISTC.txt",
- "list_d_drive": "DIR /S /B /A D:\\ >> %COMPUTERNAME%-LISTD.txt",
- "list_e_drive": "DIR /S /B /A E:\\ >> %COMPUTERNAME%-LISTE.txt",
- "list_f_drive": "DIR /S /B /A F:\\ >> %COMPUTERNAME%-LISTF.txt",
- "list_g_drive": "DIR /S /B /A G:\\ >> %COMPUTERNAME%-LISTG.txt",
- "list_h_drive": "DIR /S /B /A H:\\ >> %COMPUTERNAME%-LISTH.txt",
- "list_i_drive": "DIR /S /B /A I:\\ >> %COMPUTERNAME%-LISTI.txt",
- "list_j_drive": "DIR /S /B /A J:\\ >> %COMPUTERNAME%-LISTJ.txt",
- "list_k_drive": "DIR /S /B /A K:\\ >> %COMPUTERNAME%-LISTK.txt",
- "list_hidden_files": "DIR /A:H /S /B >> LIST.txt"
- },
- "System_Info": {
- "sysinfo_basic": "systeminfo",
- "sysinfo_csv": "systeminfo /fo csv",
- "sysinfo_list": "systeminfo /fo list",
- "sysinfo_table": "systeminfo /fo table",
- "sysinfo_noheader": "systeminfo /nh",
- "sysinfo_remote": "systeminfo /s computername",
- "sysinfo_auth": "systeminfo /u domain\\user /p password",
- "boot_time": "systeminfo | find \"Boot Time\"",
- "memory_info": "systeminfo | find \"Memory\"",
- "os_name": "systeminfo | find \"OS Name\"",
- "os_version": "systeminfo | find \"OS Version\"",
- "system_type": "systeminfo | find \"System Type\"",
- "os_full": "systeminfo | findstr /C:\"OS Name\" /C:\"OS Version\"",
- "uptime": "systeminfo | findstr /i \"uptime\"",
- "ip_all": "ipconfig /all",
- "ip_ipv4": "ipconfig | find \"IPv4\"",
- "net_listen": "netstat -ano | find \"LISTEN\"",
- "sleep_states": "powercfg /availablesleepstates",
- "sessions": "query session",
- "chrome_tasks": "tasklist | find \"chrome\"",
- "windows_version": "ver",
- "volume_info": "vol",
- "whoami_basic": "whoami",
- "whoami_help": "whoami /?",
- "whoami_all": "whoami /all",
- "whoami_fqdn": "whoami /fqdn",
- "whoami_groups": "whoami /groups",
- "whoami_logonid": "whoami /logonid",
- "whoami_priv": "whoami /priv",
- "whoami_upn": "whoami /upn",
- "whoami_user": "whoami /user",
- "cpu_detail": "wmic cpu get name,maxclockspeed /format:list",
- "disk_detail": "wmic diskdrive get model,size /format:list",
- "os_detail": "wmic os get caption,version /format:list",
- "startup_basic": "wmic startup get caption,command",
- "startup_export": "wmic startup list full >> %COMPUTERNAME%-IS.txt",
- "os": "wmic os get Caption,Version,OSArchitecture",
- "cpu": "wmic cpu get Name,NumberOfCores,NumberOfLogicalProcessors",
- "mem": "wmic os get FreePhysicalMemory,TotalVisibleMemorySize",
- "pssys": "Get-ComputerInfo | Select-Object WindowsProductName,OsTotalVisibleMemorySize,CsProcessors",
- "pshw": "Get-CimInstance Win32_ComputerSystem | Select-Object Name,Manufacturer,Model,TotalPhysicalMemory"
- },
- "Version": {
- "ver": "ver",
- "psver": "$PSVersionTable.PSVersion.ToString()",
- "ffmpegver": "ffmpeg -version",
- "imgever": "magick -version",
- "wgetver": "wget --version",
- "ytdlver": "youtube-dl --version"
- },
- "Help": {
- "hlp": "help",
- "hlpcmd": "command /?",
- "hlpATTRIB": "ATTRIB /?",
- "hlpsysteminfo": "systeminfo /?",
- "hlparp": "help arp",
- "hlpdir": "help dir",
- "hlpwhere": "where /?",
- "hlpwmic": "wmic /?",
- "hlpps": "Get-Help <command> -Full",
- "hlpffmpeg": "ffmpeg -h full",
- "hlpimge": "magick --help",
- "hlpwget": "wget --help",
- "ytdlhlp": "youtube-dl --help"
- },
- "Shortcuts": {
- "cdup": "cd ..",
- "allusersprofile": "%allusersprofile%",
- "appdata": "%appdata%",
- "homedrive": "%homedrive%",
- "homepath": "%homepath%",
- "programdata": "%programdata%",
- "programfiles": "%programfiles%",
- "programfiles_x86": "%programfiles(x86)%",
- "public": "%public%",
- "systemdrive": "%systemdrive%",
- "temp": "%temp%",
- "userprofile": "%userprofile%",
- "windir": "%windir%",
- "add_remove_programs": "appwiz.cpl",
- "calculator": "calc",
- "cert_manager": "certmgr.msc",
- "character_map": "charmap",
- "command_prompt": "cmd",
- "computer_management": "compmgmt.msc",
- "control_panel": "control",
- "display_settings": "desk.cpl",
- "device_manager": "devmgmt.msc",
- "defrag": "dfrg.msc",
- "disk_management": "diskmgmt.msc",
- "directx_diag": "dxdiag",
- "event_viewer": "eventvwr.msc",
- "explorer": "explorer",
- "firewall": "firewall.cpl",
- "shared_folders": "fsmgmt.msc",
- "group_policy": "gpedit.msc",
- "internet_options": "inetcpl.cpl",
- "region_settings": "intl.cpl",
- "local_users": "lusrmgr.msc",
- "magnifier": "magnify",
- "mouse_settings": "main.cpl",
- "sound_settings": "mmsys.cpl",
- "system_config": "msconfig",
- "system_info": "msinfo32",
- "paint": "mspaint",
- "network_connections": "ncpa.cpl",
- "notepad": "notepad",
- "on_screen_keyboard": "osk",
- "performance_monitor": "perfmon.msc",
- "power_options": "powercfg.cpl",
- "powershell": "powershell",
- "registry_editor": "regedit",
- "registry_editor_alt": "regedit32",
- "rsop": "rsop.msc",
- "security_policy": "secpol.msc",
- "services": "services.msc",
- "admin_tools": "shell:adminTools",
- "cache": "shell:cache",
- "camera_roll": "shell:camera roll",
- "common_admin_tools": "shell:common adminTools",
- "common_documents": "shell:common documents",
- "common_programs": "shell:common programs",
- "common_startup": "shell:common startup",
- "common_templates": "shell:common templates",
- "conflict_folder": "shell:conflictresolutionfolder",
- "connections": "shell:connections",
- "control_panel_folder": "shell:controlpanelfolder",
- "cookies": "shell:cookies",
- "desktop": "shell:desktop",
- "device_metadata": "shell:deviceMetadataStore",
- "documents": "shell:documents",
- "downloads": "shell:downloads",
- "fonts": "shell:fonts",
- "games": "shell:games",
- "history": "shell:history",
- "libraries": "shell:libraries",
- "local_appdata": "shell:local appdata",
- "music": "shell:music",
- "my_music": "shell:my music",
- "my_pictures": "shell:my pictures",
- "my_videos": "shell:my video",
- "network_shortcuts": "shell:netHood",
- "network_places": "shell:networkplaces",
- "original_images": "shell:original images",
- "photo_album": "shell:photo album",
- "pictures": "shell:pictures",
- "print_queue": "shell:printHood",
- "printers": "shell:printersfolder",
- "profile": "shell:profile",
- "programs": "shell:programs",
- "recent": "shell:recent",
- "recycle_bin": "shell:recyclebinfolder",
- "screenshots": "shell:screenshots",
- "searches": "shell:searches",
- "sendto": "shell:sendto",
- "onedrive_docs": "shell:skydriedocuments",
- "onedrive": "shell:skydrive",
- "onedrive_camera": "shell:skydrivecamera",
- "onedrive_music": "shell:skydrivemusic",
- "onedrive_pictures": "shell:skydrivepictures",
- "onedrive_videos": "shell:skydrivevideos",
- "startup": "shell:startup",
- "sync_results": "shell:syncresultsfolder",
- "sync_setup": "shell:syncsetupfolder",
- "users_files": "shell:usersfilesfolder",
- "user_profiles": "shell:usersprofiles",
- "videos": "shell:videos",
- "volume_mixer": "sndvol",
- "snipping_tool": "snippingtool",
- "system_properties": "sysdm.cpl",
- "task_manager": "taskmgr",
- "task_scheduler": "taskschd.msc",
- "date_time": "timedate.cpl",
- "ease_access": "utilman",
- "windows_version": "winver",
- "wmi": "wmimgmt.msc",
- "wordpad": "write",
- "security_center": "wscui.cpl"
- },
- "FilesOps": {
- "cpy": "copy /Y <src> <dst>",
- "xcpy": "xcopy <src> <dst> /E /I /H /Y",
- "robocpy": "robocopy <src> <dst> /MIR /MT:8 /R:2 /W:3",
- "mv": "move /Y <src> <dst>",
- "del": "del /Q /F <file>",
- "ren": "ren <old_name> <new_name>",
- "md": "mkdir <dir>",
- "rd": "rmdir /S /Q <dir>",
- "pscpy": "Copy-Item <src> <dst> -Recurse -Force",
- "psmv": "Move-Item <src> <dst> -Force",
- "psdel": "Remove-Item <path> -Force -Recurse",
- "psren": "Rename-Item <file> <new_name>",
- "copy_combine_txt": "COPY Z:\\file1.txt+Z:\\file2.txt+Z:\\file3.txt Z:\\combined.txt",
- "copy_jpg_rar_merge1": "COPY /b DATA\\PIC.jpg + File.rar DATA\\PICNEW.jpg",
- "copy_jpg_rar_merge2": "COPY /b DATA\\P.jpg + PIC.rar DATA\\PICR.jpg",
- "copy_merge_txt": "COPY myfile1.txt+myfile2.txt",
- "copy_embed_text": "COPY /b Pic.jpg+Text.txt NewPic.jpg",
- "copy_file": "COPY file.txt C:\\Destination\\",
- "copy_all_txt_backup": "COPY *.txt D:\\Backup\\",
- "copy_rename": "COPY original.txt C:\\Destination\\renamed.txt",
- "copy_recursive": "COPY /s source\\*.* destination\\",
- "copy_no_overwrite": "COPY /-y file.txt C:\\Destination\\",
- "copy_hidden_recursive": "COPY /h /s source\\*.* destination\\",
- "copy_with_error": "COPY file.txt C:\\Destination\\ || echo Error occurred",
- "copy_all_to_c": "COPY *.txt C:\\",
- "copy_all_to_d": "COPY *.txt D:\\",
- "copy_everything_d": "COPY *.* D:",
- "copy_exe_to_msi": "COPY Y:\\install\\j93n.exe Y:\\more\\m1284.msi",
- "copy_iso_downloads": "COPY Z:\\Software\\program.iso C:\\Users\\Jon\\Downloads\\Programs\\",
- "move_doc_d": "MOVE example.doc D:\\",
- "move_docs_stats": "MOVE *.doc C:\\statistics",
- "move_all_data": "MOVE /y \"*.*\" DATA\\",
- "move_drive": "MOVE /y \"E:\\*.*\" D:\\",
- "move_temp": "MOVE C:\\Windows\\Temp\\*.* C:\\Temp",
- "move_named": "MOVE \"computer hope\" example",
- "mv_note": "MV (not native CMD, use MOVE instead)",
- "mv_rename": "MV hope.txt hope.html",
- "rename_file": "ren oldname.txt newname.txt",
- "rename_all_txt_bak": "RENAME *.txt *.bak",
- "rename_prefix": "RENAME * 1_*",
- "rename_space_file": "RENAME \"computer hope.txt\" \"example file.txt\"",
- "rename_ext": "REN *.* *.EXT",
- "rename_doc_txt": "REN *.DOC *.TXT",
- "rename_jpeg_txt": "REN *.JPEG *.TXT",
- "rename_lnk_txt": "REN *.LNK *.TXT",
- "rename_avi_txt": "REN *.AVI *.TXT",
- "rename_mpeg_txt": "REN *.MPEG *.TXT",
- "rename_com_txt": "REN *.COM *.TXT",
- "rename_bat_txt": "REN *.BAT *.TXT",
- "rename_loop_recursive": "for /r %f in (*.pyw) do ren \"%f\" *.py",
- "rename_loop_simple": "for %f in (*.pyw) do ren \"%f\" \"%~nf.py\"",
- "robocopy_basic": "robocopy source dest /b",
- "robocopy_backup": "robocopy source dest /backup",
- "robocopy_bytes": "robocopy source dest /bytes",
- "robocopy_full": "robocopy source dest /copyall",
- "xcopy_structure": "XCOPY C:\\Client032 C:\\Client033 /t /e",
- "xcopy_move_delete": "XCOPY /y \"*.*\" D:\\ | DEL \"*.rar\"",
- "xcopy_pdf_docs": "XCOPY D:\\file.pdf %HOMEPATH%\\Documents\\",
- "xcopy_all_data": "XCOPY /y \"*.*\" DATA\\",
- "xcopy_audio": "XCOPY *.shn *.wav",
- "delete_all_jpg": "DEL /S *.jpg",
- "delete_file": "DEL C:\\path\\to\\file.txt",
- "delete_all_folder": "DEL C:\\path\\to\\directory\\*.*",
- "delete_txt": "DEL C:\\path\\to\\directory\\*.txt",
- "delete_all": "DEL *.*",
- "delete_recursive": "DEL /s C:\\path\\to\\directory\\*.*",
- "delete_quiet": "DEL /q C:\\path\\to\\directory\\*.*",
- "delete_temp": "DEL C:\\Windows\\Temp\\*.*",
- "delete_prefetch": "DEL C:\\Windows\\Prefetch\\*.*",
- "delete_user_temp": "DEL C:\\Users\\Najeeb\\AppData\\Local\\Temp\\*.*",
- "delete_rar": "DEL \"*.rar\"",
- "delete_force": "DEL /F *.ext",
- "delete_all_quiet": "DEL /S /Q \"*.*\"",
- "delete_readonly": "DEL /q /a:r C:\\Users\\Tim\\Documents\\*.docx",
- "delete_drive": "DEL J:\\*.* /f /s /q",
- "delete_logs": "DEL %WINDIR%\\*.log /a /s /q /f",
- "remove_dir": "RD C:\\test",
- "remove_dir_recursive": "RMDIR C:\\test /s",
- "remove_drive": "RD /s /q J:\\",
- "delete_profiles": "DELPROF",
- "delete_tree": "DELTREE"
- },
- "Network": {
- "ipcfg": "ipconfig /all",
- "ping": "ping -n 4 <host>",
- "trcrt": "tracert <host>",
- "dns": "nslookup <host>",
- "netst": "netstat -ano",
- "route": "route print",
- "psping": "Test-Connection <host> -Count 4 -ErrorAction SilentlyContinue",
- "pstnc": "Test-NetConnection <host> -Port <port>",
- "psip": "Get-NetIPAddress | Where-Object AddressState -eq \"Preferred\"",
- "psdns": "Resolve-DnsName <host>"
- },
- "Services": {
- "svcq": "sc query state= all",
- "svcstart": "net start <service>",
- "svcstop": "net stop <service>",
- "svcdel": "sc delete <service>",
- "pssvc": "Get-Service | Sort-Object Status",
- "pssvc_start": "Start-Service -Name <service>",
- "pssvc_stop": "Stop-Service -Name <service> -Force",
- "pssvc_restart": "Restart-Service -Name <service> -Force"
- },
- "Media FFmpeg": {
- "ffconv": "ffmpeg -i <input> -c:v libx264 -crf 23 -preset medium <output>.mp4",
- "ffaudio": "ffmpeg -i <input> -vn -acodec libmp3lame -q:a 2 <output>.mp3",
- "fftrim": "ffmpeg -ss 00:00:10 -i <input> -to 00:00:30 -c copy <output>",
- "ffmerge": "ffmpeg -f concat -safe 0 -i list.txt -c copy <output>",
- "ffresize": "ffmpeg -i <input> -vf scale=1280:720 <output>",
- "ffcomp": "ffmpeg -i <input> -c:v libx265 -crf 28 -c:a copy <output>",
- "ffinfo": "ffmpeg -i <input> -hide_banner",
- "ffsub": "ffmpeg -i <input> -vf subtitles=<file>.srt <output>"
- },
- "Images": {
- "imgconv": "magick <input> <output>.png",
- "imgresize": "magick <input> -resize 1920x1080 <output>",
- "imgcrop": "magick <input> -gravity Center -crop 1000x1000+0+0 <output>",
- "imgfmt": "magick <input> -quality 85 <output>.jpg",
- "imgcomp": "magick <input> -strip -interlace Plane -gaussian-blur 0.05 -quality 85% <output>",
- "imginfo": "magick identify -verbose <input>",
- "imgmontage": "magick montage -tile 3x3 -geometry +2+2 <input>*.jpg <output>",
- "imgwatermark": "magick <input> -gravity SouthEast -draw \"image Over 10,10 0,0 '<wm.png>'\" <output>"
- },
- "Wget Downloads": {
- "basic_download": "wget https://example.com/file.zip",
- "download_custom_name": "wget -O output-file.zip https://example.com/file.zip",
- "resume_download": "wget -c https://example.com/largefile.zip",
- "background_download": "wget -b https://example.com/largefile.zip",
- "background_log": "wget -b -o download.log https://example.com/largefile.zip",
- "download_list": "wget -i filelist.txt",
- "download_list_alt": "wget -i download_list.txt",
- "limit_speed": "wget --limit-rate=200k https://example.com/largefile.zip",
- "limit_speed_high": "wget --limit-rate=500k https://example.com/largefile.zip",
- "full_retry": "wget --limit-rate=200k --continue --show-progress --tries=0 --waitretry=5 https://example.com/largefile.zip",
- "recursive_basic": "wget -r https://example.com/",
- "recursive_level": "wget -r --level=2 https://example.com/",
- "recursive_images": "wget -nd -r -p -A jpg,bmp,gif,png https://example.com/",
- "recursive_docs": "wget -r -A pdf,doc https://example.com/documents/",
- "mirror_site": "wget --mirror --convert-links --adjust-extension --page-requisites --no-parent https://example.com",
- "continue_custom_path": "wget -c \"URL\" -P Downloads/",
- "download_path": "wget -i Download.txt -P Downloads/",
- "ftp_download": "wget -r FTP -P Downloads/",
- "user_agent": "wget --user-agent=\"Mozilla/5.0 (Windows NT 10.0; Win64; x64)\" https://example.com/file.zip",
- "ftp_auth": "wget ftp://username:[email protected]/file.zip",
- "http_auth": "wget --user=username --password=password https://example.com/securefile.zip",
- "cookies_download": "wget --load-cookies cookies.txt https://example.com/protected/file.zip",
- "script_execute": "wget -O - https://example.com/script.sh | bash",
- "wget": "wget <url>",
- "wgetresume": "wget -c <url>",
- "wgetrec": "wget -r -l 1 -np -k <url>",
- "wgetlist": "wget -i urls.txt",
- "wgetagent": "wget --user-agent=\"Mozilla/5.0\" <url>",
- "ytdlget": "youtube-dl <url>",
- "ytdlfmt": "youtube-dl -f \"bestvideo+bestaudio\" <url>",
- "ytdlaudio": "youtube-dl -x --audio-format mp3 <url>",
- "ytdlbatch": "youtube-dl -a playlist.txt",
- "ytdlsub": "youtube-dl --write-sub --sub-lang en <url>"
- },
- "Others": {
- "tsklist": "tasklist",
- "tskkill": "taskkill /PID <pid> /F",
- "shut": "shutdown /s /t 0",
- "cls": "cls",
- "find": "findstr /I \"pattern\" <file>",
- "where": "where <command>",
- "sfc": "sfc /scannow",
- "chkdsk": "chkdsk /f /r",
- "pstsk": "Get-Process | Sort-Object CPU -Descending | Select-Object -First 10",
- "psfind": "Select-String -Pattern \"pattern\" -Path <file>",
- "psenv": "$env:PATH",
- "psdate": "Get-Date -Format \"yyyy-MM-dd_HH-mm-ss\""
- },
- "WMIC_Commands": {
- "wmic_basic": "wmic",
- "wmic_help": "wmic /?",
- "wmic_remote_file": "wmic /node:@computers.txt os get caption",
- "wmic_remote_auth": "wmic /node:computername /user:admin /password:pass os get caption",
- "wmic_remote": "wmic /node:computername os get caption",
- "wmic_localhost": "wmic /node:localhost os get caption",
- "baseboard_basic": "wmic baseboard",
- "baseboard_list": "wmic baseboard get /format:list",
- "baseboard_caption": "wmic baseboard get caption",
- "baseboard_manufacturer": "wmic baseboard get manufacturer",
- "baseboard_product": "wmic baseboard get product",
- "baseboard_serial": "wmic baseboard get serialnumber",
- "baseboard_version": "wmic baseboard get version",
- "bios_basic": "wmic bios",
- "bios_list": "wmic bios get /format:list",
- "bios_version": "wmic bios get biosversion",
- "bios_serial": "wmic bios get serialnumber",
- "bios_manufacturer": "wmic bios get manufacturer",
- "bios_release": "wmic bios get releasedate",
- "system_basic": "wmic computersystem",
- "system_list": "wmic computersystem get /format:list",
- "system_name": "wmic computersystem get name",
- "system_model": "wmic computersystem get model",
- "system_manufacturer": "wmic computersystem get manufacturer",
- "system_ram": "wmic computersystem get totalphysicalmemory",
- "cpu_basic": "wmic cpu",
- "cpu_list": "wmic cpu get /format:list",
- "cpu_name": "wmic cpu get name",
- "cpu_cores": "wmic cpu get numberofcores",
- "cpu_threads": "wmic cpu get numberoflogicalprocessors",
- "cpu_speed": "wmic cpu get maxclockspeed",
- "cpu_load": "wmic cpu get loadpercentage",
- "disk_basic": "wmic diskdrive",
- "disk_list": "wmic diskdrive get /format:list",
- "disk_model": "wmic diskdrive get model",
- "disk_size": "wmic diskdrive get size",
- "disk_serial": "wmic diskdrive get serialnumber",
- "env_basic": "wmic environment",
- "env_list": "wmic environment get /format:list",
- "env_name": "wmic environment get name",
- "env_value": "wmic environment get variablevalue",
- "feature_basic": "wmic feature",
- "feature_list": "wmic feature get /format:list",
- "feature_name": "wmic feature get name",
- "logicaldisk_basic": "wmic logicaldisk",
- "logicaldisk_list": "wmic logicaldisk get /format:list",
- "logicaldisk_name": "wmic logicaldisk get name",
- "logicaldisk_fs": "wmic logicaldisk get filesystem",
- "logicaldisk_free": "wmic logicaldisk get freespace",
- "logicaldisk_size": "wmic logicaldisk get size",
- "ram_basic": "wmic memorychip",
- "ram_list": "wmic memorychip get /format:list",
- "ram_capacity": "wmic memorychip get capacity",
- "ram_speed": "wmic memorychip get speed",
- "ram_manufacturer": "wmic memorychip get manufacturer",
- "nic_basic": "wmic nic",
- "nic_list": "wmic nic get /format:list",
- "nic_name": "wmic nic get name",
- "nic_mac": "wmic nic get macaddress",
- "nic_status": "wmic nic get netconnectionstatus",
- "os_basic": "wmic os",
- "os_list": "wmic os get /format:list",
- "os_name": "wmic os get caption",
- "os_version": "wmic os get version",
- "os_arch": "wmic os get osarchitecture",
- "os_boot": "wmic os get lastbootuptime",
- "printer_basic": "wmic printer",
- "printer_list": "wmic printer get /format:list",
- "printer_name": "wmic printer get name",
- "printer_status": "wmic printer get printerstatus",
- "process_basic": "wmic process list",
- "process_full": "wmic process list full",
- "process_name": "wmic process get name",
- "process_id": "wmic process get processid",
- "process_kill_name": "wmic process where name=\"notepad.exe\" call terminate",
- "process_kill_pid": "wmic process where processid=1234 call terminate",
- "process_create_cmd": "wmic process call create \"cmd.exe /c echo test\"",
- "process_create_notepad": "wmic process call create \"notepad.exe\"",
- "product_basic": "wmic product",
- "product_list": "wmic product get /format:list",
- "product_name": "wmic product get name",
- "product_version": "wmic product get version",
- "updates_basic": "wmic qfe",
- "updates_list": "wmic qfe get /format:list",
- "updates_hotfix": "wmic qfe get hotfixid",
- "service_basic": "wmic service",
- "service_list": "wmic service list",
- "service_full": "wmic service list full",
- "service_name": "wmic service get name",
- "service_state": "wmic service get state",
- "service_start": "wmic service where \"name='spooler'\" call startservice",
- "service_stop": "wmic service where \"name='spooler'\" call stopservice",
- "share_basic": "wmic share",
- "share_list": "wmic share get /format:list",
- "share_name": "wmic share get name",
- "startup_basic": "wmic startup",
- "startup_list": "wmic startup get /format:list",
- "startup_command": "wmic startup get command",
- "user_basic": "wmic useraccount",
- "user_list": "wmic useraccount list",
- "user_name": "wmic useraccount get name",
- "user_status": "wmic useraccount get status"
- },
- "START_Links": {
- "chatgpt": "start https://chatgpt.com",
- "qwen_ai": "start https://chat.qwen.ai",
- "google_search": "start https://www.google.com/search?q=",
- "google_images": "start https://www.google.com/search?q=NAJEEB&tbm=isch",
- "duckduckgo": "start https://duckduckgo.com/",
- "yahoo_search": "start https://search.yahoo.com/search?p=",
- "wikipedia_search": "start http://en.wikipedia.org/wiki/Special:Search?search=",
- "youtube": "start https://www.youtube.com/",
- "youtube_search": "start https://www.youtube.com/results?search_query=",
- "dailymotion": "start https://www.dailymotion.com/pk",
- "flickr_search": "start https://www.flickr.com/search/?q=",
- "translate_deepl": "start https://www.deepl.com/en/translator",
- "remove_bg": "start https://www.remove.bg/",
- "cooltext": "start https://cooltext.com/",
- "icon_archive": "start https://iconarchive.com/",
- "png_eg": "start https://www.pngegg.com/en/",
- "convert_ico": "start https://convertico.com/",
- "apk_downloader": "start https://apps.evozi.com/apk-downloader",
- "virus_scan": "start https://www.virustotal.com/gui/home/upload",
- "link_extractor_1": "start https://www.prepostseo.com/link-extractor",
- "link_extractor_2": "start https://hackertarget.com/extract-links/",
- "software_filehippo": "start https://filehippo.com/",
- "software_portable": "start https://www.portablefreeware.com/",
- "software_filecroco": "start https://www.filecroco.com/",
- "pastebin_dos": "start https://pastebin.com/archive/dos",
- "pastebin_python": "start https://pastebin.com/archive/python",
- "pastebin_user1": "start https://pastebin.com/u/hackoo",
- "pastebin_user2": "start https://pastebin.com/u/Najeebsk",
- "stackoverflow_profile": "start https://stackoverflow.com/users/3080770/hackoo",
- "sat_forum": "start https://sat-forum.net/viewforum.php?f=41&start=50",
- "iptv_forum": "start https://satworld-forum.com/index.php?threads/mac-list-iptv.283/",
- "lyngsat": "start https://www.lyngsat.com",
- "archive_org": "start https://archive.org/",
- "andisearch": "start https://andisearch.com/",
- "free_tv_1": "start https://tubitv.com/home",
- "free_tv_2": "start https://watch.plex.tv/",
- "free_tv_3": "start https://www.crackle.com/",
- "free_tv_4": "start https://www.popcornflix.com/",
- "free_tv_5": "start https://filmzie.com/home",
- "free_tv_6": "start https://www.yidio.com/"
- },
- "YTDLP_Commands": {
- "update_ytdlp": "yt-dlp -U",
- "update_youtubedl": "youtube-dl -U",
- "basic_download": "youtube-dl https://www.youtube.com/watch?v=VIDEO_ID",
- "best_quality": "youtube-dl -f best https://www.youtube.com/watch?v=VIDEO_ID",
- "specific_format": "youtube-dl -f 22 https://www.youtube.com/watch?v=VIDEO_ID",
- "list_formats": "youtube-dl -F https://www.youtube.com/watch?v=VIDEO_ID",
- "video_720p": "youtube-dl -f \"bestvideo[height<=720]+bestaudio/best[height<=720]\" https://www.youtube.com/watch?v=VIDEO_ID",
- "audio_mp3": "youtube-dl -x --audio-format mp3 https://www.youtube.com/watch?v=VIDEO_ID",
- "audio_high_quality": "youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 https://www.youtube.com/watch?v=VIDEO_ID",
- "subtitles_download": "youtube-dl --write-sub --sub-lang en https://www.youtube.com/watch?v=VIDEO_ID",
- "auto_subtitles": "youtube-dl --write-auto-sub https://www.youtube.com/watch?v=VIDEO_ID",
- "playlist_download": "youtube-dl -i --yes-playlist https://www.youtube.com/playlist?list=PLAYLIST_ID",
- "playlist_partial": "youtube-dl -i --playlist-items 1-5 https://www.youtube.com/playlist?list=PLAYLIST_ID",
- "playlist_start": "youtube-dl --playlist-start 5 https://www.youtube.com/playlist?list=PLAYLIST_ID",
- "batch_download": "youtube-dl -a list_of_urls.txt",
- "archive_skip": "youtube-dl --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLAYLIST_ID",
- "custom_filename": "youtube-dl -o \"%(uploader)s/%(date)s/%(title)s.%(ext)s\" https://www.youtube.com/watch?v=VIDEO_ID",
- "limit_speed": "youtube-dl --limit-rate 500k https://www.youtube.com/watch?v=VIDEO_ID",
- "simulate": "youtube-dl --simulate https://www.youtube.com/watch?v=VIDEO_ID",
- "proxy_use": "youtube-dl --proxy http://proxy:port https://www.youtube.com/watch?v=VIDEO_ID",
- "user_agent": "youtube-dl --user-agent \"Mozilla/5.0\" https://www.youtube.com/watch?v=VIDEO_ID",
- "json_info": "youtube-dl -j https://www.youtube.com/watch?v=VIDEO_ID",
- "get_url": "youtube-dl --get-url https://www.youtube.com/watch?v=VIDEO_ID",
- "get_title_duration": "youtube-dl --get-title --get-duration https://www.youtube.com/watch?v=VIDEO_ID",
- "external_ffmpeg_trim": "youtube-dl --external-downloader ffmpeg --external-downloader-args \"-ss 00:01:00 -to 00:02:00\" https://www.youtube.com/watch?v=VIDEO_ID"
- }
- }
Advertisement