Call Us At: 701.866.2098

Category: Command Line


Command Prompt: Deriving UNC Network Path

Here’s the workaround I see many using when sending mapped-network paths via email: In Windows Explorer, hold the shift button down, right-click on the file, and select Copy as path. Insert a Hyperlink in the email and paste in the address field of the Hyperlink dialogue box. (Shortcut: Ctrl-V). At this point, the link will…

How to Create Dummy Files with Windows Command Line

Fsutil.exe is a built in filesystem tool that is useful to do file system related operations from command line. We can create a file of required size using this tool. fsutil file createnew filename length (length is in bytes) For example, to create a dummy file test.txt, with size as 50MB: Note: The above command…