search
top

How To Mount and Unmount ISO files using PowerShell

Withe Windows 10 the ability to mount ISO files (disk images) was added and you no longer have to use third party tools to mount them. In these post we will cover how to mount and unmount using PowerShell. Very simple and easy to execute. Open PowerShell as Administrator. Use the Mount-DiskImage cmdlet to mount the ISO. Syntax is: Mount-DiskImage -ImagePath “C:\FILE.ISO” Example: The drive... read more

How To Mount a Windows Share on Ubuntu 16.0.4 LTS

Recently I just installed Ubuntu 16.0.4 LTS on my Dell laptop and needed to connect to my cifs share off the FreeNAS and ran the normal mount command and it failed. Never been an issue on Fedora 24 and a new install but has been many years since I have been on Ubuntu. From the above line you see that I am passing the dir_mode and file_mode parameters to make sure that I can read / write the share. This... read more

How To Mount NFS Exports on Windows Server 2012 R2

Introduction So you have a Windows Server 2012 R2 server and you need to have the ability to have this server access an NFS export. No problem due to Client for NFS Windows feature.  Using this Windows feature and the mount command we can access NFS exports. In this post we will cover adding the feature and command sot access and also how to create a server mount at boot using local policy and a command... read more

top