Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

download windows lock screen wallpaper

# STEPS (automation script is provided at the bottom):
# 1. Press Windows+R to open Run dialog
# 2. Copy/paste the below address and press Enter
	%userprofile%AppDataLocalPackagesMicrosoft.Windows.ContentDeliveryManager_cw5n1h2txyewyLocalStateAssets
# 3. Copy all the files and paste them in a different location (say D:Temp)
# 4. Navigate to the new location (D:Temp) using cmd
# 5. Rename all the files using the following command in cmd
	ren *.* *.jpg
# 6. VOILA...your wallpapers can be found in the new location (D:Temp)
#==============================================================================
# Save the below code in a batch file (windows_wallpapers.bat) and just run it
# Source: https://github.com/astr0n0mer/tools-and-resources/blob/main/qol-scripts-for-windows/script-get_windows_lockscreen_wallpapers.bat
@echo off
SET destinationFolder=windows-lockscreen-wallpapers
if not exist "%destinationFolder%" mkdir "%destinationFolder%"
copy "%userprofile%AppDataLocalPackagesMicrosoft.Windows.ContentDeliveryManager_cw5n1h2txyewyLocalStateAssets*.*" "%destinationFolder%"
cd "%destinationFolder%"
ren *.* *.jpg
del *.
pause
Comment

PREVIOUS NEXT
Code Example
Shell :: docker sudo how to add user 
Shell :: move files one level up linux 
Shell :: linux how to undeo ctrl+z 
Shell :: Remove all your local git branches but keep master 
Shell :: send giphy on slack 
Shell :: install golang ubuntu 
Shell :: how to uninstall a package installed using homebrew 
Shell :: check if s3 bucket exists 
Shell :: gnome files command 
Shell :: how to refresh cache on github 
Shell :: git remember credentials ubuntu 
Shell :: cudatoolkit installation 
Shell :: zsh for loop 
Shell :: Available platform plugins are: xcb, eglfs, linuxfb, minimal, minimalegl, offscreen, vnc, wayland-egl, wayland, wayland-xcomposite-egl, wayland-xcomposite-glx. 
Shell :: remove users from linux 
Shell :: how to set execute permission in linux 
Shell :: Undo the commit and completely remove all changes 
Shell :: Accessors are only available when targeting ECMAScript 5 and higher. 
Shell :: Failed to install the following Android SDK packages as some licences have not been accepted. build-tools;28.0.3 Android SDK Build-Tools 28.0.3 platforms;android-29 Android SDK Platform 29 
Shell :: how to edit crontab in linux 
Shell :: git change comment 
Shell :: git commit 
Shell :: ng command not found 
Shell :: server 2012r2 powershell unable to download from URI 
Shell :: husky install 
Shell :: how to make a new branch git 
Shell :: install kotlin ubuntu 
Shell :: linux count number of times word appears in file 
Shell :: nginx remove x-powered-by 
Shell :: ubuntu docker host ip 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =