In order to be eligible for the adoption funds you need to have a success plan owner on your success plan and that owner need to be from the customer email-domain.
Here is how you as a PARTNER can do it:
Find the success plan and make sure it is all 100%Click on 1. Business Case and wait for page to load. Then click teams
Make sure you have these roles
If you are missing Success Plan Owner , click add and add him.
Now go back up to the success plan and click the gear icon and Edit members
If you do not see a customer plan owner click add/edit members
Select the customer owner from the drop down list
Now you are ready to submit your offer request. Click on Offers and continue or “Learn more”
Associate the success plan which now has a owner
Attach any aditional files and click submit.
Customer Success Plan Owner now has to approve the project in the fasttrack portal.
If you want to use Microsoft Intune to deploy a MSI file it needs to be signed by a Code Signing Certificate. Most MSI’s from software vendors are signed already, but if you created a custom MSI (e.g. Office 365) by wrapping an EXE then you need to sign that MSI.
Using a MSI will enable Intune to push that software using the MDM channel. All MDM joined PC’s will be able to recieve this software.
Scenario this covers: I want to use Microsoft Intune to deploy apps and exe files to PC’s e.g. Office 2016/Custom Software
Step 2 – Download and Install Windows 7 SDK to get the signtool.exe get the SDK from here: https://www.microsoft.com/en-us/download/confirmation.aspx?id=8279 ->Accept all defaults and do not change anything. It will prompt errors
->Check that you have the signtool.exe in this folder: C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin
Step 3 – Get your certificate exported in a PXF file. and put it in the same folder as your MSI file.
Step 4 – Run CMD as administrator and input this command:
Click Install GeneratorLaunch it and install itClick Start NewSelect 32 bit if a fresh install, if you have 32 bit installed you can not select 64 bit.Feel free to add a lanugageJust click NextRemove stuff you do not wantEnsure you have the right edition or mabye you want to add 64 bit?Of course you want automatic updates. Click nextMake it real silent. Don’t do Auto ActivateNEW: Self signing certificate. Remember to check and generate. If you do not do this there will be a UAC promptCould be anythingGive it a name and click save
you should be ready to deploly that script to computers running the Microsoft Intune Management Agent. The Intune MDM channel does not support EXE, only MSI.
Log into Intune and go to AppsSelect Software Installer and select EXE then browse for the EXE
Follow the Wizard.
You are done. Now you need to move the user or PC into that group for deployment. Deploy to all PC’s? apply to all computers instead of a group.
Venter på å kjøre scriptManuelle oppgaver som kan gjøres på klienten
Microsoft Intune can not push out Group Policies onto computers, but we can target users or devices with scripts that change that setting in the registry.
Here is how you create a simple script that does just that.
@Echo off
echo A Script to set a Registry value using Windows Intune
REM registry key
reg add HKLM\Software\Policies\Microsoft\PassportForWork /f
reg add HKLM\Software\Policies\Microsoft\PassportForWork\ /v Enabled /t REG_DWORD /d 0 /f
if errorlevel 1 (
echo Error installing reg key
exit /b 1
) else (
echo Installed regkey
)
exit /b 0
Simply copy this script into a notepad file and then save it as PassportForWork.CMD right click and Run as Administrator to input the software policy where we set Passport for Work enabled as = 0 “Turn Off”
You must be logged in to post a comment.