PS: Dynamically Creating Folder and File Structure

In many cases, systems engineers require to setup a system where in they need to automatically create a file and folder structure. Here is a simple code that serves such a need: $Folder   = "D:TEMP" $UserName = “TestUser009” $FileName = "ReadMe.txt" $Path     = $Folder + ” + $UserName if (!(Test-Path -path $Path)){     new-item -path $Folder -name $UserName -type directory } if (!(Test-Path -path "$Path$FileName")){     new-item -path $Path -name $FileName -type file }

Read more

RemoteFX: delivers a full Windows user experience for Virtual Desktop Infrastructure (VDI)

Microsoft RemoteFX is a new feature that is included in Windows Server 2008 R2 with Service Pack 1 (SP1). It introduces a set of end-user experience enhancements for Remote Desktop Protocol (RDP) that enable a rich desktop environment within your corporate network.   Microsoft® RemoteFX™ enables the delivery of a full Windows user experience to a range of client devices including rich clients, thin clients, and ultrathin clients. RemoteFX delivers a rich user experience for Virtual Desktop Infrastructure (VDI) by providing a 3D virtual adapter, intelligent codecs, and the ability to redirect USB devices in virtual machines. RemoteFX is integrated […]

Read more