SCCM by Davis: “Migrating DHCP to Windows Server 2012 using PowerShell” plus 19 more | |
- Migrating DHCP to Windows Server 2012 using PowerShell
- Temporary Post Used For Theme Detection (3dd33980-6a40-4642-88aa-6e0fcf7eaa9e – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
- Signing Windows 8 applications using an Internal PKI
- Signing Windows 8 applications using an Internal PKI
- MetroPCS, Like T-Mobile, Says Bring Over Your AT&T iPhone
- Era Living started the forum topic OS Deployment problem in the group System Center Configuration Manager 2007
- Era Living joined the group System Center Configuration Manager 2007
- Era Living became a registered member
- Avaya, Blue Jeans Make Video Conferencing Simpler
- Nick Moseley wrote a new post, VBScript to Disable Devices with Devcon
- Mac joined the group Group Policy
- Kevin Steiner joined the group Microsoft Desktop Optimization Pack (MDOP)
- Kevin Steiner joined the group Microsoft Management Summit
- Kevin Steiner joined the group ConfigMgr 2012 Application Exports
- Kevin Steiner joined the group Windows Intune
- Kevin Steiner joined the group System Center Suite 2012
- Kevin Steiner joined the group System Center Operations Manager
- Kevin Steiner joined the group System Center Configuration Manager 2012
- Kevin Steiner joined the group SCCM Right-click tools
- Kevin Steiner joined the group Configuration Manager Queries, Reports, and MOFs
Migrating DHCP to Windows Server 2012 using PowerShell Posted: 14 Jun 2013 02:58 AM PDT Many companies are migration to Windows Server 2012 (soon R2) right now and why not use the new build in tools to migrate some of the infrastructure services running at old Windows Server versions. This first post of the "Migrating using PowerShell" series we will look at DHCP Server role.
Step-by-Step Guide Source system must be at least Windows Server 2008. Logon with an Administrator and start PowerShell prompt with elevated rights. This PowerShell command can run locally at the server you want to export DHCP Server settings from or remote from the server you want to export DHCP Server settings to. I run the commands from the server I want to be the new DHCP Server. Run the following command: Export-dhcpserver –computername dc2.lab1.local –leases –file c:\temp\dc1dhcp.xml –ver
Ups, forgot to create TEMP folder before running the command….folder created
Now install the DHCP Server Role at the target server and start PowerShell with elevated rights. Disable the scopes on the old DHCP Server, in my case dc1.lab1.local. If the exported files are located elsewhere the copy the files to the new DHCP Server. Run the following command and remember to create the backup folder: Import-dhcpserver –computername dc2.lab1.local –leases –file c:\temp\dc1dhcp.xml –backuppath C:\temp\Backup -ver The parameter backuppath is mandatory as a backup of the existing DHCP database is created before our changes are imported. Check the status of the new DHCP Server and that the scopes are as expected. You are done! DHCP Server Command reference: Next Post: Migrating Network Policy Server (NPS) to Windows Server 2012 using PowerShell | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Posted: 14 Jun 2013 02:51 AM PDT This is a temporary post that was not deleted. Please delete this manually. (0c75bc0b-505b-44b6-829e-e4f7a310e079 – 3bfe001a-32de-4114-a6b4-4005b770f6d7) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Signing Windows 8 applications using an Internal PKI Posted: 14 Jun 2013 01:22 AM PDT So – your development cycles have been completed and now you are ready to deploy the much anticipated Windows 8 based application that you have developed to your clients. You will quickly realize that the deployment of your newly created Windows 8 application cannot happen until the appx assembly has been signed. All methods of deployment (Windows Store, PowerShell or System Center 2012 Configuration Manager) require the application to be signed using a certificate issued by a trusted source before you can deploy it. If your application was developed with the intention of staying within the corporate landscape, then you may use a certificate issued by an internally hosted trusted CA. A lot of documentation is available about the requirements of the certificate issued, but a how-to guide was not available until now. This blog post will walk you through the steps required to install an internally developed application to production systems. The screen captures in this blog post are performed using Windows Server 2012 Domain Controller, Windows Server 2012 Certificate Authority, Visual Studio 2012 and Windows 8 Enterprise. The procedures for Windows Server 2008 R2 vary slightly, but the same certificate requirements can been completed. The diagram below identifies the workflow that this blog post will walk you through.
Get the CertificateVisual Studio will validate the certificate used to sign the app in the following ways:
Create the TemplateThe built-in Windows 2008 R2 or Windows 2012 templates will not allow the creation of a certificate which meets all of these requirements. A new template must be created which allows the issuance of a properly configured certificate.
Request the CertificateThe certificate template has been created and now must be requested to generate a .cer file that will be placed in the local store on the computer the request is made from. It doesn't matter which system makes the request because the .cer is immediately used to generate the .pfx file needed to sign the application.
Export to PFXVisual Studio requires the .pfx format to sign the application. In the previous step, we generated a .cer file which is located in the user store. We need to convert that .cer to a .pfx in preparation for signing.
Sign the Application
Package the signed APPXWe have created the .pfx file needed to sign the application in the previous steps, so now we can sign our application.
Configure Group PolicyIn order to deploy a Windows 8 application using Side loading, the computer receiving the package must either have a developer license (used for testing purposes only) or appropriate local/group policy settings to ensure the applications which are trusted can be installed.
This post was contributed by John Taylor, a Senior Consultant with Microsoft National IT Operational Consulting – US. Disclaimer: The information on this site is provided "AS IS" with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the Terms of Use. This posting includes an audio/video/photo media file: Download Now | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Signing Windows 8 applications using an Internal PKI Posted: 14 Jun 2013 01:11 AM PDT So – your development cycles have been completed and now you are ready to deploy the much anticipated Windows 8 based application that you have developed to your clients. You will quickly realize that the deployment of your newly created Windows 8 application cannot happen until the appx assembly has been signed. All methods of deployment (Windows Store, PowerShell or System Center 2012 Configuration Manager) require the application to be signed using a certificate issued by a trusted source before you can deploy it. If your application was developed with the intention of staying within the corporate landscape, then you may use a certificate issued by an internally hosted trusted CA. A lot of documentation is available about the requirements of the certificate issued, but a how-to guide was not available until now. This blog post will walk you through the steps required to install an internally developed application to production systems. The screen captures in this blog post are performed using Windows Server 2012 Domain Controller, Windows Server 2012 Certificate Authority, Visual Studio 2012 and Windows 8 Enterprise. The procedures for Windows Server 2008 R2 vary slightly, but the same certificate requirements can been completed. Figure 1 below identifies the workflow that the walk through will take. Figure 1 - Workflow for Signing Apps with internal CA Get the CertificateVisual Studio will validate the certificate used to sign the app in the following ways:
Create the TemplateThe built-in Windows 2008 R2 or Windows 2012 templates will not allow the creation of a certificate which meets all of these requirements. A new template must be created which allows the issuance of a properly configured certificate.
Request the CertificateThe certificate template has been created and now must be requested to generate a .cer file that will be placed in the local store on the computer the request is made from. It doesn't matter which system makes the request because the .cer is immediately used to generate the .pfx file needed to sign the application.
Export to PFXVisual Studio requires the .pfx format to sign the application. In the previous step, we generated a .cer file which is located in the user store. We need to convert that .cer to a .pfx in preparation for signing.
Sign the Application
Package the signed APPXWe have created the .pfx file needed to sign the application in the previous steps, so now we can sign our application.
Configure Group PolicyIn order to deploy a Windows 8 application using Side loading, the computer receiving the package must either have a developer license (used for testing purposes only) or appropriate local/group policy settings to ensure the applications which are trusted can be installed.
This post was contributed by John Taylor, a Senior Consultant with Microsoft National IT Operational Consulting – US. Disclaimer: The information on this site is provided "AS IS" with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the Terms of Use. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MetroPCS, Like T-Mobile, Says Bring Over Your AT&T iPhone Posted: 13 Jun 2013 08:30 PM PDT MetroPCS is encouraging consumers to sign up and bring their own iPhones, which T-Mobile's HSPA and LTE networks can support. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Posted: 13 Jun 2013 05:18 PM PDT Greetings, Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Era Living joined the group System Center Configuration Manager 2007 Posted: 13 Jun 2013 05:18 PM PDT Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Era Living became a registered member Posted: 13 Jun 2013 05:10 PM PDT Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Avaya, Blue Jeans Make Video Conferencing Simpler Posted: 13 Jun 2013 02:15 PM PDT At InfoComm, Avaya brought video to its IP Office UC solution, while Blue Jeans showed off the latest version of its cloud video conferencing service. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Nick Moseley wrote a new post, VBScript to Disable Devices with Devcon Posted: 13 Jun 2013 01:05 PM PDT
'========================================================================== Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mac joined the group Group Policy Posted: 13 Jun 2013 12:14 PM PDT Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Kevin Steiner joined the group Microsoft Desktop Optimization Pack (MDOP) Posted: 13 Jun 2013 11:17 AM PDT Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Kevin Steiner joined the group Microsoft Management Summit Posted: 13 Jun 2013 11:16 AM PDT Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Kevin Steiner joined the group ConfigMgr 2012 Application Exports Posted: 13 Jun 2013 11:16 AM PDT Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Kevin Steiner joined the group Windows Intune Posted: 13 Jun 2013 11:16 AM PDT Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Kevin Steiner joined the group System Center Suite 2012 Posted: 13 Jun 2013 11:16 AM PDT Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Kevin Steiner joined the group System Center Operations Manager Posted: 13 Jun 2013 11:16 AM PDT Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Kevin Steiner joined the group System Center Configuration Manager 2012 Posted: 13 Jun 2013 11:15 AM PDT Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Kevin Steiner joined the group SCCM Right-click tools Posted: 13 Jun 2013 11:15 AM PDT Comments: 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Kevin Steiner joined the group Configuration Manager Queries, Reports, and MOFs Posted: 13 Jun 2013 11:15 AM PDT Comments: 0 |
You are subscribed to email updates from SCCM by Davis To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
No hay comentarios:
Publicar un comentario