Mac – iWork – preinstalled on all new Macs

According to this link:
https://discussions.apple.com/thread/7708588?start=0&tstart=0

iWork does not come with Sierra but is preinstalled on all new Macs. Therefore, if deploying a Mac with a format and re-image process particularly with Casper imagine, one should decide wether or not to include the iWork applications (Keynote, Pages, Numbers) in the base OS image.

Posted in Labs, Software | Tagged , , | Comments Off on Mac – iWork – preinstalled on all new Macs

Java Config file and excepted sites deployment

Some older Java-based websites are so out-of-date that Java refuses to run unless the web site is in the “excepted sites” list. This is normally a user-specific setting however you can set this up as a system wide exception list.

On windows —-
in c:\Program Files (x86)\Java\\lib\
(replace with the correct java release directory for your system)
place a file called “deployment.config”

deployment.system.config= file:///c:/williams/java/deployment.properties
deployment.system.config.mandatory=true

Then in c:\williams\java\
place a file called “deployment.properties”

deployment.webjava.enabled=true
deployment.security.level=MEDIUM
deployment.security.level.locked
deployment.user.security.exception.sites=c:\williams\java\exception.sites

(There are many, many properties you can use here …)

And in c:\williams\java\
place another file called “exception.sites”

http://phet.colorado.edu/
http://csi.chemie.tu-darmstadt.de/
http://winter.group.shef.ac.uk/

Once configured this way, you can update the excepted sites by pushing out a new “exception.sites” list to the computers.

For additional documentation see the websites at:

http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/jcp/properties.html

http://www.adminarsenal.com/admin-arsenal-blog/manage-javas-control-panel-and-exception-site-list/

For Macs :

Create a folder called “Deployment” in: /Library/Application\ Support/Oracle/Java/

In that folder create another folder called “Security”

The files “deployment.properties” and “deployment.config” go in the “Deployment” folder, while the “exception.sites” file goes in the “Security” folder. Here is a screen shot of what you’ll have when you are done:

Keep in mind the Mac OS is always case sensitive on file names you should a plain text editor like “Atom” to edit these files (avoids RTF crap that TextEdit adds by default) and the URL file pointer for the deployment.config files looks like:
deployment.system.config=file:////Library/Application\ Support/Oracle/Java/Deployment/deployment.properties

For Williams College peeps – Current copies of these files can be found in macsus and JAMF.

Posted in Labs, Software | Tagged , | Comments Off on Java Config file and excepted sites deployment

Windows 10 – Installing .Net 3.5 Framework

Only .NET 4.0 framework is included in Windows 10 by default. However, many applications still require the .NET 3.5 Framework so to enable/install this 3.5 Framework load your install DVD into the drive and give the following command at an administrative command prompt:

Dism.exe /online /enable-feature /featurename:NetFX3 /source:D:\sources\sxs /LimitAccess

net35install

For more details see:
https://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_install/how-to-instal-net-framework-35-on-windows-10/450b3ba6-4d19-45ae-840e-78519f36d7a4?auth=1

Posted in Labs, Software | Tagged | Comments Off on Windows 10 – Installing .Net 3.5 Framework

Windows 10 – Word could not create the work file error

After an upgrade to windows 10 LTSB 2016 “anniversary” edition MS word is giving the error:
“Word could not create the work file. Check the temp environment variable”

According to Microsoft this error occurs when Word doesn’t have permission to write temporary files. To fix this they suggest changing the location of the Internet Explorer Temporary folder or change the registry pointer for Word to a correct temporary location with:
HKEY_CURRENT_USER \Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders
Set the “Cache” to:
%USERPROFILE%\AppData\Local\Microsoft\Windows\Temporary Internet Files

For Details See: https://support.microsoft.com/en-us/kb/2285187

Posted in Labs, Software | Tagged , | Comments Off on Windows 10 – Word could not create the work file error

Windows 10 – Hide Disk Use Percentage Bars

The disk in use percentage bars can be alarming and inaccurate particularly for automatically connected network shares. Therefore, I find it is best to hide those from windows users on lab/classroom computers.

Open REGEDIT and navigate to: HKLM\Software\Classes\Drive
Right click on “TileInfo”. Remove the phrase “System.PercentFull;” from the string

For more details see:
http://www.instantfundas.com/2012/11/how-to-hide-drive-space-indicator-bars.html

Posted in Labs | Tagged , | Comments Off on Windows 10 – Hide Disk Use Percentage Bars

Mac – El Capitan – SIP and EFI booting with rEFInd

A great article about using rEFInd with El Capitan which now includes SIP is at:

http://www.rodsbooks.com/refind/sip.html

Posted in Labs | Tagged , , , | Comments Off on Mac – El Capitan – SIP and EFI booting with rEFInd

Windows 10 – Windows To Go Enterprise Deployment Steps

Using a “Windows To Go” USB boot disk to provide course-specific windows programming environments

Microsoft’s overview is at: https://technet.microsoft.com/en-us/library/hh831833(v=ws.11).aspx

In the Fall of 2016 – Williams will be piloting one computer science programming course using windows to go drives.
In the Fall of 2018 – Williams also began using these to “Dual-Boot” macs!

To create the environment:

1) A very fast read/write USB drive is needed. In the above link Microsoft recommends certain devices, we used the Samsung T3 250 GB portable drives.

2) Create a windows to go drive using the windows to go control panel on any windows 10 computer. You can point this at a WIM file you created from a syspreped windows environment.

  • Do not encrypt the drive and do not set it to boot automatically

3) Once complete, boot that created disk on any device like an iMac.

For other ideas on deployments see the website at:
https://technet.microsoft.com/en-us/itpro/windows/deploy/deploy-windows-to-go

Posted in Labs, Software | Tagged , | Comments Off on Windows 10 – Windows To Go Enterprise Deployment Steps

Windows 10 – Imaging with DSIM GUI

Reports are that ImageX is deprecated in favor of the newer DSIM tools in windows 8 and above. Here is a link to a DSIM GUI:
https://sourceforge.net/projects/vdism/

Posted in Labs | Tagged , | Comments Off on Windows 10 – Imaging with DSIM GUI

Mac – El Capitan – netboot servers must be trusted

The new System Integrity Protection, SIP for short, which is part of Mac OS 10.11 (El Capitan) requires you to set your netboot servers as “trusted”. For details see: https://support.apple.com/en-us/HT205054

I added a DeployStudio script to run the appropriate commands to add our netboot servers to the NVRAM whitelist (See Below). This script will need to be updated with the new IP addresses once I get those later this summer. The script should be included in workflows just after the reimage and should NOT be postponed till first boot. The csrutil executable is not available with El Capitan booted. It is only available in the pre-boot image restore environment.

#!/bin/sh

echo "SetNetBootTrusted.sh - Start - Lynna, July 5 2016 ("`date`")"

/usr/bin/csrutil netboot add 137.165.27.37
/usr/bin/csrutil netboot add 137.165.27.27

echo "SetNetBootTrusted.sh - end"

exit 0

Posted in Labs | Tagged , , | Comments Off on Mac – El Capitan – netboot servers must be trusted