Jump to content

I often will start a download from an external device on my PC running WIndows 8 1


G+_Rud Dog
 Share

Recommended Posts

Well, if you want to 'nerd out' with some Windows PowerShell ISE, here is a simple script. Just fill in the $source and $destination info then execute it...but be sure to test it out with unimportant files/directories, first.

 

$source = 'C:\Users\Stu\Desktop\Downloaded Files'

$destination = 'D:\Music'

 

New-Item $destination -type directory

Copy-Item -Path $source -Recurse $destination

Stop-Computer -Force

Link to comment
Share on other sites

LIke the idea of shutting down after so many minutes of inactivity. Of course, I am assuming the computer sees moving files as an activity?

The script looks interesting.

 

Is there a way to run a macro based on mouse clicks and wait till finished? Can faintly remember some sort of mouse and keyboard macro maker following your keystrokes to complete a task.

Link to comment
Share on other sites

 Share

×
×
  • Create New...