If you can’t wait for the IoT website to update, The Windows 10 IoT RTM images is already available
Build…… 10240.16384.th1.
If you can’t wait for the IoT website to update, The Windows 10 IoT RTM images is already available
Build…… 10240.16384.th1.
The future of Windows is coming on July 29
To make your next Windows experience even better – We have just released the next version of Access Director. Using Access Director you will be able to secure your desktop, simple and easy!
– Run your desktop in a non-elevated user context
– Elevate only needed applications with a single click
– Elevate in your current user-context without affecting other unsecured applications like IE or Office
What’s in Access Director 3.0 ?
– Updates to support the next Windows experience (10)
– Support for integration modules
– Minor bug fixes
Get it from the Download Center
Direct Download Link
In my case I need to automate the installation of .NET 3.5 within a MDT 2013 build and capture task sequence for Windows 8.1
In the State restore add a step to set the WindowsSource Path
The Windows Source will be located within the Operating Systems folder on your Deployment Share
Is it that simple? Yes!
NOTE: If you want to use a Run Command Line to install it, you could use something like this: DISM.exe /online /enable-feature /featurename:NetFX3 /All /Source:”%deployroot%\Operating Systems\Windows 8.1 x64 Enterprise VL\Sources\SXS” /LimitAccess
Installing UniFi controller in Debian
1. Edit /etc/apt/sources.list
Add:
# Ubiquiti UniFi updates
deb http://www.ubnt.com/downloads/unifi/distros/deb/debian debian ubiquiti
2. Add GPG keys
Run:
sudo apt-key adv –keyserver keyserver.ubuntu.com –recv C0A52C50
sudo apt-key adv –keyserver keyserver.ubuntu.com –recv 7F0CEB10
3. Run the following commands
sudo apt-get update
sudo apt-get install unifi
It should now start and be running at https://:8443/
NOTE:
You might have to modify the path in for java in /etc/init.d/unifi I had to change this from JAVA_HOME=/usr/lib/jvm/java-6-openjdk to JAVA_HOME=/usr/lib/jvm/java-6-openjdk-amd64
UniFi Controller default TCP ports:
unifi.shutdown.port=8081 (for management purpose)
unifi.http.port=8080 (device inform)
unifi.https.port=8443 (controller UI / API)
portal.http.port=8880 (portal redirect port for HTTP)
portal.https.port=8843 (portal redirect port for HTTPs)
unifi.db.port=27117 (local-bound port for DB server)
And UDP port 3478.
I’ve been running the mFi controller on a Windows server, but wanted to move it to my Debian box – The install for Windows is quite simple, click and run – but for Debian a few more steps is required, so here is what I did to get it up and running
I am running Debian 7 (7u2 – Wheezy)
1. Edit /etc/apt/sources.list
Add:
## Debian Wheezy (7.0)
deb http://dl.ubnt.com/mfi/distros/deb/debian debian ubiquiti
2. add GPG Key
sudo apt-key adv –keyserver keyserver.ubuntu.com –recv C0A52C50
3. Run the following commands
sudo apt-get update
sudo apt-get install mfi
It should now start and be running at https://<yourserver>:6443/
NOTE: If your not already running MongoDB, The installation guide can be found here Install MongoDB on Debian
Simpel, but very helpful tool to create Windows Boot or To-Go USB sticks
It’s that simple, EasyBoot USB with 4 easy steps and you are ready to go.
The tool is pretty much self-explanatory
Do not hesitate to ping me with bugs, feature requests or ideas for new tools 🙂
To follow-up on my earlier post “Deploying Windows 10 Enterprise Technical Preview with MDT 2012 Update 1 Preview” Let’s try to do a little automation to make the deployment experience a little smoother.
We just need to do a little configuration within the Microsoft Deployment Toolkit 2013 Update 1 Preview.
The first thing that comes to mind is, when we PXE/media boot our client.
We are shown the Microsoft Deployment Toolkit Welcome Wizard. We need to click Run the Deployment Wizard to install a new Operating System.
Note that in this picture is also the option to set Default Keyboard layout for Windows PE as well as a Static IP. I’m going to assume that we always have DHCP in place and accessible for our clients.
To skip the Welcome Wizard:
Next up – User Credentials Prompt
This is where need to type in the credentials for the Deployment Share. This is the last prompt before we start processing data from the Deployment Share – so we need to edit bootstrap.ini again
We are now taken directly to the Task Sequence wizard
Let suppose that we only have and need one task sequence job – lets automate this step as well
Changes will be a bit easier this time, hence we don’t need to update the ISO or PXE media each time – we are now working with CustomSettings.ini
You should now be brought directly to the Computer Details page
I’m going to keep this window visible for the computer naming part, but it can of course be skipped. It will require two skip options:
You could also just prepopulate the fields in CustomSettings.ini for either Domain or Group
Domain:
Workgroup:
It will automatically use the account used to connect the network share, you can for obviously reasons use a different account
The great part of working with CustomSettings.ini is that there is no need to rebuild boot media – changes are effective immediately – go ahead and give it a try
When you boot your client again with the latests additions, we have arrived at Move Data and Settings:
The default option for this step is: Do not move user data and settings, If we where to just skip this step, the outcome would be no data and settings backup
Some other configuration options are:
Configure CustomSettings.ini and boot the client again – you could also just click next, BUT we know that testing is good, and more testing is better! 😉
Next up is the Locale and Time Zone selection
The valid skip options:
I’m going to configure the optional options just as default
If you ready and retry – you should now only be prompted with a “Ready to begin” and a blank details section, don’t see any need for this page, so let’s just skip this as well
This can be skipped with the follwing option:
Let try it out! 🙂
Hopefully you have achieved an automated installation progress now
The IT Organization and Running Package name can also we changed, here is an example that includes the current date and tasksequence ID using a variable – can of course just be static text.
Here is a snip of my CusomSettings.ini and Bootstrap.ini – yours should look similar to this
CustomSettings.ini
[Settings]
Priority=Default
Properties=MyCustomProperty
[Default]
OSInstall=Y
SkipCapture=YES
SkipAdminPassword=YES
SkipProductKey=YES
SkipComputerBackup=YES
SkipBitLocker=YES
SkipTaskSequence=Yes
TaskSequenceID=IW10ETPX64
SkipComputerName=Yes
SkipDomainMembership=Yes
JoinDomain=ClientGeeks.com
MachineObjectOU=OU=Staging,DC=ClientGeeks,DC=com
SkipUserData=Yes
SkipLocaleSelection=Yes
SkipTimeZone=Yes
KeyboardLocale=0409:00000409
UserLocale=0409:00000409
UILanguage=en-us
TimeZone=004
TimeZoneName=Pacific Standard Time
SkipSummary=Yes
_SMSTSOrgName=ClientGeeks.com #day(date) & “-” & month(date) & “-” & year(date)#
_SMSTSPackageName=%TaskSequenceID%
Bootstrap.ini:
[Settings]
Priority=Default
[Default]
DeployRoot=\\MDT01\DeploymentShare$
SkipBDDWelcome=YES
UserID=svc-mdt-install
UserDomain=ClientGeeks.com
UserPassword=Password1
Have fun deploying! 🙂
Start the Microsoft Deployment Toolkit Workbench
Now we have the a deployment share to work from – Now we need some data
Let’s start by importing Windows 10 Enterprise Technical Preview
If you haven’t already downloaded the iso – get it though the Windows Insider Program (http://windows.microsoft.com/da-dk/windows/preview-iso)
Now let’s go ahead and create Task Sequence to install this nice vanilla version of Windows 10 Enterprise Technical Preview
So now we got the task sequence ready – so what’s next?
Let’s start the creation of the needed boot images (or either ISO or PXE boot)
Browse to your Deployment Share in Windows Explorer
Locate the boot folder – We now have the newly generated boot files. Wim files if we want to PXE boot using Windows Deployment Services, or ISO if we want to use a Boot CD.
I’m going to copy the LiteTouchPE_x64.iso to my Hyper-V host, so I can test boot a VM.
Let’s boot and see what happens
We are now being presented with the Deployment Wizard Welcome screen
If we to automate or just plain and simple skip this window
Now we are connect to the deployment share – all changes needed from heron out is done within the task sequecen, CustomSettings.ini or within the Deployment Share
The computer is now being installed with the Windows 10 Enterprise Technical Preview
Automating the process will be covered in another post, as well as adding applications and customizing J
Deploying Windows 10 Technical Preview with MDT 2013 Update 1 Preview
Download MDT 2013 Update 1 Preview from connect (https://connect.microsoft.com/ConfigurationManagervnext/MicrosoftDeploymentToolkit)
Microsoft Deployment Toolkit Update 1 Preview has now been installed
Now Download the Windows Assessment and Deployment Kit for Windows 10 Technical Preview (http://www.microsoft.com/en-us/download/details.aspx?id=45522)
It’s that simple 🙂