Windows 10: How do i execute batch script via key combinations?
Discus and support How do i execute batch script via key combinations? in Windows 10 Software and Apps to solve the problem; I made a batch script that just shuts down my pcWorks well with win 10 but for win 11 the key combinations doesnt seem to workI check the properties i... Discussion in 'Windows 10 Software and Apps' started by Chizzzt, Feb 16, 2025.
Thema:
How do i execute batch script via key combinations?
Loading...
-
How do i execute batch script via key combinations? - Similar Threads - execute batch script
-
How do i execute batch script via key combinations?
in Windows 10 GamingHow do i execute batch script via key combinations?: I made a batch script that just shuts down my pcWorks well with win 10 but for win 11 the key combinations doesnt seem to workI check the properties i tried resetting with the same combinations, it shuts down the computer, turned pc on and tried the key combinations again, it... -
Batch scripting
in Windows 10 Software and AppsBatch scripting: Hi, here's the code that I used for 3 DISM commands to start automatically after pressing a key:Code and result:Code:@echo off echo You are going to use DISM. echo 1. To check the image. echo 2. Scan your PC's health echo 3. Restore your PC'S health. echo To continue, press... -
Batch scripting
in Windows 10 GamingBatch scripting: Hi, here's the code that I used for 3 DISM commands to start automatically after pressing a key:Code and result:Code:@echo off echo You are going to use DISM. echo 1. To check the image. echo 2. Scan your PC's health echo 3. Restore your PC'S health. echo To continue, press... -
Batch scripting
in Windows 10 Network and SharingBatch scripting: Hi, here's the code that I used for 3 DISM commands to start automatically after pressing a key:@echo off echo You are going to use DISM. echo 1. To check the image. echo 2. Scan your PC's health echo 3. Restore your PC'S health. echo To continue, press any key. echo Before... -
PageFile.sys batch script
in Windows 10 VirtualizationPageFile.sys batch script: Hello, I need help writing a batch script that would configure Windows Virtual Memory based on the amount of RAM installed If you have 4 GB of RAM, set virtual memory to 8 GB (Custom size: set both initial and maximum size to 8192) If you have 8 GB of RAM, set virtual memory... -
How to undo a batch script
in Windows 10 Network and SharingHow to undo a batch script: I decided it would be a good idea to download and run a random batch script from the internet to get the ability to move files around freely, rather than sticking to the presets. Microsoft, if you see this, please allow us to move and organize files as we wish and not have to... -
Batch Scripts / Programs.
in Windows 10 Performance & MaintenanceBatch Scripts / Programs.: The members and quests who use this forum know how professional, informative and helpful it is! In order to help members solve their problems/issues we often ask them to run certain programs and perform certain tasks and then upload [ post ] the results to the forum for us... -
Batch Script to execute in Win 10 pro
in Windows 10 SupportBatch Script to execute in Win 10 pro: I'm looking for a batch script that can: Pull the single row taskbar to a 3 row taskbar and lock it in place in its default location (bottom). Change the time format at the bottom right corner from default to have e.g. "2:00 AM" in the first row, "Saturday" in the second... -
Batch script question
in Windows 10 SupportBatch script question: Hello, I want make a batch script to delete a spefic folder on the C disk, but how can I get only that spefic folder? I got this: Code: FOR /D %%p IN ("C:\USERS\%USERNAME%\Downloads\*.*") DO rmdir "%%p" /s /q cd C:\USERS\%USERNAME%\Downloads\ del *.* /q /s timeout /t 5...