Windows 10 – Clean Boot

https://support.microsoft.com/en-us/help/929135/how-to-perform-a-clean-boot-in-windows

Use msconfig to disable all non-Microsoft “Services” and “Startup” from starting

After booting clean, use msconfig to set your computer back to “Normal” boot.

Posted in Labs, Software | Tagged | Comments Off on Windows 10 – Clean Boot

Windows 10 – Users Not Appearing on Login Screen (Lock Screen)

See:
http://www.thewindowsclub.com/other-users-not-displaying-windows

Posted in Articles | Comments Off on Windows 10 – Users Not Appearing on Login Screen (Lock Screen)

JAMF – DEP and VPP Certificate Renewal

For the JAMF server we have yearly renewing certificates that connect our JAMF server to Apple’s servers for our hardware (DEP) and software (VPP) purchases.

Here is how I did this process in May 2017:

  • 1) Log into our JAMF server ( https://casper.williams.edu:8443 ) with a full admin account
  • 2) Navigate to Management SettingsGlobal SettingsDevice Enrollment Program
  • 3) Click on Public Key to download our JSS key to the local computer
  • 4

  • ) Sign into our Apple School Manager account at https://school.apple.com/ with our AppleID of: [email protected]
  • 5) Click on MDMUpload Key
  • 6) Once uploaded you should be able to click on Get Token to download the new token
  • 7) Go back to our JAMF ServerManagement SettingsGlobal SettingsDevice Enrollment Program
  • 8) Click on Williams JSS and then Edit
  • 9) Then Upload Server Token

Remain logged into our JAMF server to update the VPP Certificate:

  • 1) Log into the [email protected] AppleId at the website: https://volume.itunes.apple.com/
  • 2) In the upper right corner click on [email protected] for a drop down menu, select Account Summary
  • 3) In the MDM section, click on Download Token
  • 4) While still logged into our JAMF Server navigate to Management
  • SettingsGlobal SettingsVPP Accounts

  • 5) Click on Williams VPP then Edit
  • 6) Finally click on “Renew Service Token” to upload the token you just downloaded from Apple

Phew. Done.
Log out of all accounts.

Posted in Labs, Software | Tagged , , , | Comments Off on JAMF – DEP and VPP Certificate Renewal

Mac – NoMAD – AD functionality to macs without binding

You can add AD functionality to a Mac without having to “Bind” it to the domain …

See:
See: https://www.nomad.menu/

Posted in Labs, Software | Tagged , | Comments Off on Mac – NoMAD – AD functionality to macs without binding

Windows 10 – Install to external USB drive

Update (Sept 2017) –

An even easier way to do this is to copy your wim image to a windows 10 computer and run the “Windows to Go” application.  In the Windows to Go app, choose the disk you want to install the image on and then choose the wim image you want to put on that disk.

The result should be a bootable windows 10 external disk that will boot on just about any computer!


Using a Windows 10 computer, follow the standard procedure to format the external drive and set it to be bootable in DiskPart:

Diskpart
Diskpart> list disk
Diskpart> sel disk 1 (be sure to select the correct disk!)
Diskpart> clean
Diskpart> create partition primary
Diskpart> format fs=NTSF quick
Diskpart> active
Diskpart> assign letter=g
Diskpart> exit Continue reading

Posted in Labs | Tagged , | Comments Off on Windows 10 – Install to external USB drive

Mac – Microsoft Office 2016 – Disable First Run and Welcome screens

See the details at:
https://derflounder.wordpress.com/2016/01/17/suppressing-office-2016s-first-run-dialog-windows/

Posted in Labs, Software | Tagged , | Comments Off on Mac – Microsoft Office 2016 – Disable First Run and Welcome screens

Mac – Turn off Time Machine

To stop Time Machine from asking to use every drive you plug in as a backup drive:

defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool TRUE

From:
http://www.cultofmac.com/141070/turn-off-requests-to-use-new-disks-for-time-machine-os-x-tips/

Posted in Articles | Tagged | Comments Off on Mac – Turn off Time Machine

Mac – Active Directory Debugging and Logs

To debug an Active Directory binding issues

First set the directory error logging to “debug” with:
sudo odutil set log debug

then try the join …

set the error logging back to “error” with:
sudo odutil set log default

You’ll find the log file in:
/var/log/opendirectoryd.log

An excellent reference article with additional tips is at:
https://derflounder.wordpress.com/2012/03/29/diagnosing-ad-binding-problems-from-the-command-line/

Posted in Labs | Tagged , | Comments Off on Mac – Active Directory Debugging and Logs

JAMF – Create Mac OS to deploy

To create an OS package to deploy one could:
1) download the OS installer from the App Store
2) this will put the installer in the /Applications folder
3) once the installer is completely downloaded it will start automatically so “quit” the installer from the file menu
4) Open AutoDMG and drag the installer from the /Applications folder to the AutoDMG window.
5) Add applications like GarageBand, iMovie, Keynote, Numbers, and Pages which are pre-installed on all new Macs but are left out of the Mac OS installer for some reason
6) Build the configuration to save the DMG file
7) Open Casper Admin and drag that DMG file into the window
8) Set the package priority to 1 so it installs first
9) Create a new configuration with this OS install and other things like casper enrollment

A helpful website with pictures is available at:
http://www.theinstructional.com/guides/build-deploy-os-x-images-with-autodmg

Posted in Articles | Tagged , , | Comments Off on JAMF – Create Mac OS to deploy