About Me

My photo
Bergen, Norway
19th times Microsoft MVP (Security and Windows). IT-Dude @SpareBankenNorge
Showing posts with label Ignite. Show all posts
Showing posts with label Ignite. Show all posts

Friday, November 29, 2019

My Microsoft Ignite 2019 Activity Summary

Microsoft Ignite 2019

You always get overwhelmed and impressive by Microsoft Ignite, no matter how many times you have been on it. The energy from the attendees and organizers are always a boost that makes the jetlag and sore feet from all the walking feel quite unimportant.

Tuesday, May 29, 2018

Upcoming seminars, conferences and public appearance of the Bluescreen Brothers

Looking like it will be a busy period forward regarding public speaking. So just as you can keep track here is a list of dates of verified “shows”

Wednesday, October 4, 2017

Ignite Session: THR3026, The Presentation!


Had an awesome Microsoft Ignite, my session was packed with the most excellent people. I recorded my demos, so I promised to make the demos available here on my blog.

Wednesday, September 27, 2017

Ignite Session: THR3026, THE Script!!!

Without any fuzz, here it is The Script. Short and sweet just like me. Will make a better blogpost with more info so watch this blog ;-)

Thursday, September 21, 2017

Ignite Session: THR3026 - Migrating home folders to OneDrive for Business

One of the big benefit of working in a company like Lumagate is the focus on continuous development of knowledge among the employees. Combining this with the amassing culture of sharing is caring mentality, gives us that special edge that is needed to solve challenges.

I had been trying to create a script to search for OneDrive limitations in folders to use before migrating or to have as a troubleshooting tools during migration. The Microsoft support and recovery assistant for office 365 can be helpful, but that require to be installed and are a GUI based solution. So running a script is a much more efficient way. I was a bit stuck so I just posted a "help me, please" note in our Teams channel and 1 hour late I had a really promising draft of a script handed to me by my colleague Reidar Johansen.

Saturday, May 9, 2015

Ignite - Slides from my session

Ignite is over, a great week with lots of highlights.
After 3 session with The Blues Brother as a starter topic, it was a real pleasure on the 4 and last session to get visited bye them on stage.

 
My session can be downloaded here
 
Picuture from unitedsandhausen
 

Wednesday, May 6, 2015

How to get and use the Windows key from UEFI/BIOS

I found myself in the situation that I needed to get the Windows key out from the ACPI in the UEFI bios and preferable get to use it in a task sequence in MDT.

There are different ways of doing this, but I wanted to do this with little code and easy to understand.

There is a nice tool created to get the key on github, created by Christian Korneck, called get_win81key. This tool gives you the key in plane text. You can get it




If I were supposed to do this manually, I now would just take that key and type it in with slmgr command or in the GUI. But I want to do this within a task in MDT.

Testing a couple of solutions without using the get_win8key with my great scripting guru colleague Håvard ( www.grondal.me) and figuring out that it cannot be done with default powershell stuff, it needs more code. Therefore, we quickly figured out that some use of the “get_win8key” files is the easiest way, but we need a way of setting the output from the file into a variable that we can use with the slmgr command.

Testing out some different solutions we ended up in this nice little line:

for /F "delims=" %%a in ('%~dp0get_win8key.exe') do set key=%%a

The get_win8key.exe files need to be located in the same folder as the cmd files that we want to run the script. We now have a variable with the result from the get_win8key

Next thing is that we want to insert that key into Windows with the “slmgr” and active it. We also want this to be done quiet. The quiet part are done with the parameter //B in cscript. We then need 2 lines of slmgr :

cscript //B %windir%\system32\slmgr.vbs /ipk %key%

cscript //B %windir%\system32\slmgr.vbs /ato

Pasting the code together it will look like this:



The next step is to copy both the get_win8key.exe and a cmd file with the script into the script folder at out MDT deployment share. I have simply called the script file “Get-Winkey.cmd”


I then need to modify the task sequence that I use to install Windows Pro (Remember that you need to have a BIOS with the key for this to work, and if you are deploying anything else then a version matching the version of the key in BIOS it will fail. Try doing it manually if you are unsure)


Thursday, April 30, 2015

My sessions at Ignite 2015


Just days away from Ignite in Chicago, and I am already on the way from Norway.
I will do 2 different sessions this year with a repeat on both.

This is Windows Theater sessions so that means it will be 15-20 intense minutes, no time for bull.


Cleaning Up Unknown IAM Assignments Across Azure Subscriptions

  If you manage more than a handful of Azure subscriptions, IAM hygiene quickly becomes one of those tasks everyone knows is important, but ...