I need a reliable procedure for the following problem i'm facing: I created win 10 vm in azure, changed browser setting and then created vhd from it. When i create new VM from that image, every single modification that i made was gone because of sysprep. How can take a snapshot of the this configuration and apply it on the new VM's that i create? I tried to use tools like regshot but it gives me a lot of changes.
How to restore internet explorer 11 configuration when creating new VM from vhd?
110 Views Asked by Yossi Sharabi At
1
There are 1 best solutions below
Related Questions in WINDOWS
- Get Maximum Log Size
- Debugging Windows Services while starting
- Possible consequences of duplicate ProgId for different classes
- How to chain BCryptEncrypt and BCryptDecrypt calls using AES in GCM mode?
- mingw-64 conflicting declarations when cross-compiling
- I run an EXE program from a Windows Service but I can't see form C#?
- Why is PowerShell "not recognized" when installing Chocolatey?
- How to check if Windows device is phone or tablet/pc?
- How to add directories to Cygwin gcc default search path
- Can't install anything with pip2 on Windows 7 due to UnicodeDecodeError
- Active directory and linux nslcd binding without extending the AD schema
- How To Prevent Over Scrolling in Scroll Viewer Windows Phone 8.1
- Unicode error from pip install
- Where is the 'EnablePinning' property in the ribbon framework's recent items?
- How can I implement the same models and data across ASP.NET and Windows Apps
Related Questions in INTERNET-EXPLORER
- How do I wrap text in a pre tag for Internet explorer?
- How do I extract info from crunchbase
- Jquery on submit ajax post needs two clicks in IE
- SSL certificate error 403.13 in IIS 7.5
- Hiding Script Errors popups in IE8
- Internet explorer 11 browser cannot display the expires value of the session cookie from my app
- Internet Explorer hover/rgba/opacity/css3 compatibility
- How to wait for a java applet to load when automating Internet Explorer?
- Javascript Event.originalEvent.path IE8 error
- cursor: copy not working in Internet Expoler
- input[type="submit"][disabled] not working for IE8
- Auothotkey: Remove string, placement string in subject box
- Why does IE show junk for my dasBlog blog?
- Lag in scrolling behavior on IE 10 and IE Edge modes
- Using angularJS click on enter form functionality in Internet Explorer
Related Questions in VIRTUAL-MACHINE
- No laravel sync folders in homestead vagrant on windows
- Only 32 bit available in Oracle VM - Hadoop Installation
- Setting Email Notification for Virtual machine whic are down or services that are stopped in Azure Cloud
- Some weird error using Kivy 1.9.1
- How to enable Microsoft Access Driver (*.mdb, *.accdb) in Microsoft Azure windows server 2012 R2?
- scp between two virtual machines in virtualbox
- how to set network configuration for vm in esx host through command?
- List all VM's by their port mirroring settings PowerShell
- Downloading files from Google Cloud Bucket onto Google Compuete Engine Instance Startup (.NET)
- SonarQube not running on CentOS
- Vagrant Port Fowarding on Windows
- Docker inside Windows guest virtual machine
- SSH asking for password in Bluemix
- Running (& compiling) untrusted user code
- ANDY Error Unable to Launch VM Process
Related Questions in REGEDIT
- Change OS Language Silently (Windows 7)
- MVC App pointing to wrong hive(Registry)
- How to Enable "Application: Specify the maximum log file size (KB)" through registry key
- What is most secure way to store the license information in registry - c#
- Multiple Modal Windows trying to use regular expressions in JS
- Vb.Net : LogonMode and StartMode of SQLEXPRESS and SQLBROWSER
- Getting registry keys with JMI
- Windows 10 | regedit | exefile shell command (firewall add rule) - not running
- Edited the registry with C# but cannot find the change with regedit
- How to set program.exe as a default browser in Windows 10?
- How to add registry key on Windows CE 5.0 device?
- Rclick menuext fails with internet explorer
- Add menu item to windows context menu only for text selection
- Using Regedit in Java
- What is the difference between Process.Start() and running manually?
Related Questions in SYSPREP
- Scripting Sysprep
- Sysprep Windows 10 LTSC 2021
- Make a PowerShell script run on startup in the OOBE Sysprep environment
- terraform-provider-vsphere customize windows ip address fail sysprep "Windows Setup could not configure Windows to run on this computer's hardware"
- Sysprep is getting failed
- Launching Sysprep from HTA with Run method fails
- How to login with different user credential while creating GCE instance using powershell startup script
- How to restore internet explorer 11 configuration when creating new VM from vhd?
- Launch SYSPREP in C#
- What's the Hash in HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.<extension>\UserChoice?
- Call to 169.254.169.254/latest/meta-data/instance-id fails in AWS deployment script
- Can't acces to syspreped VM
- Remove-AppxPackage for all users
- Windows 10 Fall Patch_SYSPrep Fails_Miracastview issue
- Azure new VM account disabled by default (Custom Image)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can take a Snap Shot through Power shell:
Get the VHD disk to be copied. $disk = Get-AzureRmDisk -ResourceGroupName $resourceGroupName -DiskName $dataDiskName
Create the snapshot configurations. $snapshot = New-AzureRmSnapshotConfig -SourceUri $disk.Id -CreateOption Copy -Location $location
Take the snapshot. New-AzureRmSnapshot -Snapshot $snapshot -SnapshotName $snapshotName -ResourceGroupName $resourceGroupName
If you plan to use the snapshot to create a Managed Disk and attach it a VM that needs to be high performing, use the parameter -AccountType Premium_LRS with the New-AzureRmSnapshot command. The parameter creates the snapshot so that it's stored as a Premium Managed Disk. Premium Managed Disks are more expensive than Standard. So be sure you really need Premium before using that parameter.
For more information, see the Create a VM from a snapshot sample.