Hyper-V New-VM Error 0x80070003 “File was not found”

During the provisioning of a new Hyper-V virtual machine in Windows Server 2016 (or 2012 R2), you may encounter a rather baffling error while executing the New-VM cmdlet:

New-VM : The operation failed. User ‘Administrator’ failed to create external configuration store at ‘C:\vm\dc01’: The system cannot find the path specified.. (0x80070003) The operation failed because the file was not found.

You confirm receiving a similar message with the “New Virtual Machine Wizard” in Hyper-V Manager and that the user account has sufficient rights/permissions to create a new VM in the target directory.

This strange error could be attributed to a corrupted or missing “Virtual Machines” folder and/or content. This is located at “C:\ProgramData\Microsoft\Windows\Hyper-V” with a typical Hyper-V installation. To resolve this issue, recreate or restore the former’s contents from a working backup. Alternatively, uninstall and reinstall of the Hyper-V role may be in order. Note that this location contains .xml data setup as symbolic links (.symlink) to Hyper-V virtual machines.

Zurich Kurs/Course: Definitiv Start Mo. 11. Jan 2016 PowerShell v5 Basics

PowerShellKurs: PowerShell V5: Einführung (IS35.16.11)
Wo: EB Zuerich
Start: Mo. 11. Jan 2016 x 8 Mal
Zeit: 1800 – 2130 Uhr

Ob Einsteiger, Quersteiger oder Entwickler, fangen wir von Null mit der Grundlage von Windows PowerShell an, um Praxisorientierte Know-how zum Einsatz vor Ort, Hybrid bis in der Cloud zu vermitteln.

Mehr Information und Anmeldung hier.

#PowerShell #ITPros #Events #Training @ebzuerich

Follow me for all the buzz -> @_leedesmond (Twitter)!

Zurich Kurs/Course: Definitiv Start Mo. 9. Nov 2015 Windows Server 2012 R2 Basics

Kurs: Windows Server 2012 R2 Basics (IS36.15.51)
Wo: EB Zuerich
Start: Mo. 09. Nov 2015 x 6
Zeit: 1800 – 2130 Uhr

Ob Einsteiger, Quersteiger oder Developer, fangen wir von Null mit der Grundlage von Windows Server Administration an.

Mehr Information und Anmeldung hier.

#PowerShell #ITPros #Events #Training @ebzuerich

Follow me for all the buzz -> @_leedesmond (Twitter)!

Speaker @ Microsoft Evolution Day 2015 (Do/Thu Oct 29 – Zurich)

Mit 41 Break-out Sessions in 8 unterschiedlichen haupt Themen von Office 365/Azure, System Center, Windows 10, Server Infrastructure/Automation, SQL, Virtualisierung bis zum Entwirklung, bietet der dieses Jahres stattfindenden Microsoft Evolution Day 2015 sicher etwas für Sie vor Ort (on-premises) bis in die Cloud an.

Ich freue mich als Speaker* das folgende Thema vermitteln zu dürfen:

Skype für Business: Migration, Upgrade, Koexistenz und Interoperabilität («ME1533»)

Der Nachfolger von Lync Server 2013 steht vor der Tür. Ein erfolgreicher Einstieg in die jüngste Version kann umfangreiche Planung, Zeit und Aufwände fordern. Was noch als «supported» zählt oder in der Praxis tatsächlich weiterhin funktioniert, bleibt unklar. Nicht mit dieser Session! Von der Vorbereitung der Kern-Server und Backend-Infrastruktur über die unterschiedlichen Lync-Client-Versionen bis hin zu Extern- und Telefonie-Integration helfen wir Ihnen, den Wald auch bei den vielen Bäumen nicht aus den Augen zu verlieren.

Nutzen Sie diese tolle Gelegenheit, praxisnahe Anleitungen und Erfahrungsberichte unserer Referenten, die für Sie sowohl in der strategischen Planung als auch in der praktischen Anwendung von grossem Nutzen sein werden, davon zu profitieren und mit Fachleuten zu vernetzen.

Mehr Information über den Event und Anmeldung finden Sie hier.

PARTNER

Microsoft Schweiz DigicompSwiss IT Pro User Group

#Event #Lync #Skype4B #Skype #ITPros #Office #Office365 #Exchange #SharePoint

Follow me for all the buzz -> @_leedesmond (Twitter)!

*
Desmond Lee ist Spezialist für End-to-end Unternehmsinfrastruktur und Cloud-Lösungen in diversen Branchen. Desmond ist Microsoft Most Valuable Professional (MVP Skype for Business/Lync Server) und bekannt für seinen leidenschaftlichen Einsatz für die IT Community. Als langjähriger Microsoft Certified Trainer (MCT) hat er die Swiss IT Pro User Group für Microsoft Professionals gegründet. Desmond ist oft an internationalen und regionalen Events als Speaker anzutreffen und von dort bekannt für seinen hohen Praxisbezug in seinen Vorträgen. Er schreibt regelmässig für Fachpublikationen und betätigt sich auch als Moderator in Microsoft-Foren und Newsgroups. Mehr zu Desmond: www.leedesmond.com.

Old URL:
http://www.leedesmond.com/weblog/?p=1025

Zurich Kurs/Course: Definitiv Start in 2 Wochen (Do. 13.08.15): PowerShell v5 Basics

Windows PowerShellKurs: PowerShell v5 Einführung (IS35.15.41)
Wo: EB Zuerich
Start: Do. 13. August 2015 x 8
Zeit: 1800 – 2100 Uhr

Basiert auf die neueste Version 5.0 von PowerShell, die in Windows 10 RTM und die nächste Windows Server 2016 Ausgabe verfügt.

Mehr Information und Anmeldung hier.

#PowerShell #ITPros #Events #Training @ebzuerich

Follow me for all the buzz -> @_leedesmond (Twitter)!

TIP 1516 (PowerShell DSC): Access Denied in Workgroup Environment

The Desired State Configuration, DSC (as well as CIM cmdlets) feature introduced in PowerShell 4.0, relies on properly configured and functional WinRM listeners. By virtue of creating a WinRM listener, PS remoting* is enabled automatically (this is the case since Windows Server 2012 out-of-the-box). DSC does not depend on the latter nor need to run off from machines joined to an Active Directory environment to operate.

In a Workgroup environment, you may encounter challenges pushing out the resulting MOF to the desired nodes via Start-DSCConfiguration despite running with elevated administrative privileges:

VERBOSE: Perform operation ‘Invoke CimMethod’ with following parameters, ”methodName’ = SendConfigurationApply, ‘className’ = MSFT_DSCLocalConfigurationManager,’namespaceName’ =
root/Microsoft/Windows/DesiredStateConfiguration’.
The WinRM client cannot process the request. If the authentication scheme is different from Kerberos, or if the client computer is not joined to a domain, then HTTPS transport must be used or the destination machine must be added to the TrustedHosts configuration setting. Use winrm.cmd to configure TrustedHosts. Note that computers in the TrustedHosts list might not be authenticated. You can get more information about that by running the following command: winrm help config.
+ CategoryInfo : NotEnabled: (root/Microsoft/…gurationManager:String) [], CimException
+ FullyQualifiedErrorId : HRESULT 0x803380e4
+ PSComputerName : SERVER01

You verified that … Continue reading “TIP 1516 (PowerShell DSC): Access Denied in Workgroup Environment”

Speaker PowerShell Conference 2015 Asia – Singapore 18-19 Sep

The PowerShell Asia Conferene 2015 (Singapore)

The PowerShell Conference 2015, Asia (Singapore 18-19 Sep, 2015)

Super excited to announce that I shall be a Speaker at the first ever PowerShell Conference 2015 Asia. Taking place in Singapore 18-19 Sep 2015 over the F1, Formula One night racing weekend, the abstract of my demo-driven break-out session is summarized below:

PowerShell Management Tips & Tricks in Lync/Skype Business Server

PowerShell is part and parcel of Lync Administration since Server 2010. Learn how to effectively put the many great cmdlets together to build useful scripts to monitor and manage your global environment in this demo driven session.

Make sure you take this opportunity to join Jeffrey Snover, industry experts, partners and MVPs share all you want to know about PowerShell in this exciting event. More information and registration here.

PS: do not miss out this wonderful opportunity to stay over to travel around and explore Singapore and the amazing South-East Asian countries.

#psconfasia15 #Skype4B #Lync #ITPro #PowerShell #Singapore

Follow me for all the buzz -> @_leedesmond (Twitter)!

Old URL:
http://www.leedesmond.com/weblog/?p=1018