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.
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.
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:
4
Remain logged into our JAMF server to update the VPP Certificate:
Settings – Global Settings – VPP Accounts
Phew. Done.
Log out of all accounts.
You can add AD functionality to a Mac without having to “Bind” it to the domain …
See:
See: https://www.nomad.menu/
There is apparently a way to delete accounts on systems that haven’t been used in over 30 days with an AD Group Policy setting. I found that this GP setting did not work on the Windows 10 systems I manage. Also, even if it did work, there are a few accounts on these systems that I do not want deleted even if they haven’t been used in months. Therefore, I came up with a powershell script based on many other people’s work that deletes user accounts and profiles that haven’t been used in over 30 days.
Download powershell script to delete 30 day unused user accounts and user profiles
Before running this script on your systems, edit it with a script editor to review the details within the script!!!
To run this script, I also recommend you open an administrative command prompt and give the commands:
cd c:\users
dir /od /ta
This will give you a sorted list of the accounts and the last time the account profile was accessed. You can compare that list to the accounts that will be deleted when running the script. Note that if the list of users to delete is long, you may get quota violations when running the script. When this happens I reboot and run the script again.
To run the script open a powershell window with “run as administrator” and run the script from whatever directory you have saved it in. When running the script be sure to check the list of accounts about to be deleted for any accounts you don’t want to delete. If you see any, you can exit the script as instructed and then edit the script to add the accounts you don’t want deleted to the line indicated in the script.
——————————-
On the windows systems I manage I have already pre-loaded my private version of the script in a specific folder so the steps to run this are:
set-executionpolicy unrestricted
C:\williams\DeleteOldUsers.ps1
set-executionpolicy undefined
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
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/
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/
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