kdajet.blogg.se

Useful autohotkey scripts
Useful autohotkey scripts




Check which format your images are in, and change the file type in the second line if necessary. First, adjust the path so it points toward the desired folder. There are a few things to tweak before you run this script. Get-childitem -path $path -filter $filter | Enter the following to rename files en masse: $path = " $home\desktop\make use of\holidaysnaps" So you've just uploaded an album of photographs to your computer? And they're all labelled with whatever naming convention your camera uses by default? Wouldn't it be handy if you could attach a keyword that you can search for at a later date?Ī simple PowerShell script can do just that. Simply figure out which apps you want to remove, write up a script that gets rid of the lot, and run it on each PC. If you're in charge of setting up an entire fleet of computers, this can really speed up the process. Get-appxpackage -name *BingSports* | remove-appxpackage

useful autohotkey scripts

Get-appxpackage -name *BingNews* | remove-appxpackage For instance, this command would remove three commonly unwanted programs: get-appxpackage -name *BingFinance* | remove-appxpackage

useful autohotkey scripts

You'll need to find the name that Windows uses to refer to each individual app and insert it in place of APPNAME. Open up a PowerShell window as an administrator and use this command to remove a particular app: get-appxpackage -name *APPNAME* | remove-appxpackage Many programs and services do important work behind the scenes, so don't be flippant about what you remove. Rather than removing each of these pieces of software manually, we can set up a script that does the job for us.īefore you use this technique to get rid of any apps from your user account, consider the consequences. Ping(host="8.8.8.There are many benefits to installing Windows 10, but it's fair to say that the operating system (OS) comes packaged with several apps that qualify as bloatware. (Ping() = "offline") ? Network("wlan") : Return if ping()ing results in being 'offline', reconnect the wifi connection, else let's wait another 15secs

useful autohotkey scripts

SetTimer, CheckOnlineStatus,% 3*1000 for testing check the 'online' status every 5sec






Useful autohotkey scripts