How to quickly determine what version of Windows you are using

To determine the version of Microsoft Windows that you are running, follow these steps:

  1. Press the [Windows] key on your keyboard, together with the [R] key.
  2. The “Run” dialog window should appear on your screen.
  3. Type “winver” and press [ENTER] or click OK.
  4. The “About Windows” popup window should appear.

The version number is now displayed.

Introduction into 3D modelling using SketchUp Make

Next Training Session

Date: Wednesday 17 August 2016
Time: 08:00pm – 10:00pm
Location: (Rangeview) Tolga, QLD
Cost: $90
Subject Introduction to SketchUp Make

Description

SketchUp (formerly Google Sketchup) is a 3D modeling computer program for a wide range of drawing applications such as architectural, interior design, civil and mechanical engineering, film, and video game design—and available in a freeware version, SketchUp Make.  In this hands-on guided training session we will use ‘SketchUp Make’ 3D editing software to explore basic 3D modelling.

This 2 hour training session will teach you how to create and edit 2D shapes and 3D objects.  This course will provide basic training that will help master high-end 3D modelling software products like Autodesk’s 3dsmax and Maya or the open source product Blender.  If you are interested in 3D printing, this course will increase your understanding of rapid prototyping focused products like Solidworks or Slic3er.

Continue reading “Introduction into 3D modelling using SketchUp Make”

How to re-apply Windows Server sharing permissions and NTFS permissions for home directories

To re-apply sharing permissions (Everyone, Full) and NTFS permissions on Windows Server home directories, you can use the following script:

dir /b D:\...\UsrHome\ > usrhomeslist.txt
for /F %j in (usrhomeslist.txt) do net share %j$="D:\...\UsrHome\%j" /CACHE:none /GRANT:everyone,FULL
for /F %j in (usrhomeslist.txt) do cacls "D:\...\UsrHome\%j" /t /e /g %j:C

Cacls

/t – “tree” Apply changes to current directory and all sub-directories.
/e – “edit” Edit existing permissions instead of replacing them.
/g – “grant” Grant specified permissions to user or group.  Permissions can be:

  • R (Read)
  • W (Write)
  • C (Change)
  • F (Full Control)