Search Results

2
votes

Safe remove USB-Drive using Win32 API?

Here is a technet article about removable storage media. Look for DismountNtmsMedia. …
0
votes

Keyboard shortcut to paste clipboard content into command prompt window (Win XP)

This is not really a shortcut but just a quick access to the control menu: Alt-space E P If you can use your mouse, right click on the cmd window works as paste when I tried it. …
8
votes

batch scripting iterating over files in a directory

This lists all the files (and only the files) in the current directory: for /r %i in (*) do echo %i Also if you run that command in a batch file you need to double …
1
vote

How can I debug a .BAT script?

The only way I can think of is spinkle the code with echos and pauses. …
3
votes

Where Windows Explorer gets its “Folder Up” and “Back” icons from?

From %windir%\System32\Shell32.dll …
4
votes

VIM Ctrl-V Conflict with Windows Paste

Check your _vimrc file and see if it sources mswin.vim. That script maps the ^v to the paste. You can either remove that line on your _vimrc file or disable the mapping commands directly on mswin.v …