{"id":702,"date":"2023-07-10T06:23:54","date_gmt":"2023-07-10T06:23:54","guid":{"rendered":"https:\/\/www.shivaami.com\/blog\/?p=702"},"modified":"2023-12-26T10:32:14","modified_gmt":"2023-12-26T10:32:14","slug":"performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide","status":"publish","type":"post","link":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/","title":{"rendered":"Performing In-Place Upgrade for Windows Server on Google Cloud: A Comprehensive Guide"},"content":{"rendered":"<p>Upgrading your Windows Server on Google Cloud Platform (GCP) is a critical task to ensure you benefit from the latest features and security updates. In this blog post, we will walk you through the detailed steps outlined in the Google Cloud documentation for performing an in-place upgrade for Windows Server.<\/p>\n<p><strong>Step 1: Take a Clone of the Server Before the OS Update<\/strong><br \/>\nBefore initiating any upgrade process, it is essential to create a clone of your server. This serves as a backup, allowing you to revert to the previous state in case of any unforeseen issues during the upgrade.<\/p>\n<p><strong>Step 2: Update the Server and Check for Updates<\/strong><br \/>\nBefore proceeding with the upgrade, make sure to update the server and check for any pending updates. This ensures that your system is in the best possible state before the upgrade process.<br \/>\n(Run all below command gcloud cli)<\/p>\n<p><strong>Step 3: Create a Disk Based on Installation Media<\/strong><br \/>\na) Set the GCP project :-<br \/>\nCommand:-<\/p>\n<blockquote><p>gcloud config set project PROJECT_ID<\/p><\/blockquote>\n<p>b) Create a disk based on the installation media: &#8211;<br \/>\nCommand:-<\/p>\n<blockquote><p>gcloud compute disks create win-installers<br \/>\n&#8211;image-family=windows-install-media<br \/>\n&#8211;image-project=compute-image-tools &#8211;zone=ZONE-Name<\/p><\/blockquote>\n<p>c) Attach the disk to your VM in read-only mode:-<br \/>\nCommand:-<\/p>\n<blockquote><p>gcloud compute instances attach-disk VM_NAME &#8211;disk=win-installers &#8211;mode=ro &#8211;zone=ZONE<\/p>\n<p>gcloud compute instances attach-disk VM_NAME &#8211;disk=win-installers &#8211;mode=ro &#8211;zone=ZONE-Name<\/p><\/blockquote>\n<p><strong>Step 4: Attach Custom Installation Media as Additional Disk <\/strong><br \/>\nFollow the steps in Creating an image from an ISO file to create a disk from the ISO image for custom installation media.<\/p>\n<p><strong>Step 5: Prepare the ISO File (Run All this command using gcloud cli +)<\/strong><br \/>\na) Set the ISO file URL:<br \/>\nCommand:-<\/p>\n<blockquote><p>ISO_URL=https:\/\/example.com\/big.iso<\/p><\/blockquote>\n<p>b) Create a disk containing the contents of the ISO file<br \/>\nCommand:-<\/p>\n<blockquote><p>DISK_NAME=iso<\/p><\/blockquote>\n<p>Create a new disk to which to copy the contents of the ISO files:<\/p>\n<blockquote><p>gcloud compute disks create $DISK_NAME \\<br \/>\n&#8211;size=10GB \\<br \/>\n&#8211;zone=$(gcloud config get-value compute\/zone)<\/p><\/blockquote>\n<p><span style=\"text-decoration: underline;\"><strong>Note:- Use a larger disk size if your ISO file exceeds 9 GB.<\/strong><\/span><\/p>\n<p>c) Create a startup script for the temporary VM. The startup script performs the following actions:<br \/>\n1) Format the secondary disk with the NTFS file system.<br \/>\n2) Download the ISO file from the HTTP or Cloud Storage URL you specified.<br \/>\n3) Mount the ISO file and copy its contents to the secondary disk.<br \/>\n<strong><span style=\"text-decoration: underline;\">Note: Execute the script as-is on the command-line interface (CLI) by obtaining the script from the URL mentioned above.<\/span><\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-707\" src=\"https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/12\/pasted-image-0.png\" alt=\"Upgrade for Windows Server on Google Cloud\" width=\"682\" height=\"760\" srcset=\"https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/12\/pasted-image-0.png 682w, https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/12\/pasted-image-0-269x300.png 269w\" sizes=\"auto, (max-width: 682px) 100vw, 682px\" \/><\/p>\n<p>d) Create a Windows Server 2019 VM using the startup script and the created disk:<br \/>\nCommand:-<\/p>\n<blockquote><p>gcloud compute instances create iso-copier \\<br \/>\n&#8211;machine-type=n1-standard-2 \\<br \/>\n&#8211;image-family=windows-2019-core \\<br \/>\n&#8211;image-project=windows-cloud \\<br \/>\n&#8211;disk=name=$DISK_NAME,auto-delete=no \\<br \/>\n&#8211;metadata=enable-guest-attributes=true,iso=$ISO_URL \\<br \/>\n&#8211;metadata-from-file=windows-startup-script-ps1=startup.ps1 \\<br \/>\n&#8211;scopes=https:\/\/www.googleapis.com\/auth\/devstorage.read_only<\/p><\/blockquote>\n<p>The VM takes about 2 minutes to start. Depending on the size of the ISO file, it can take another 5-15 minutes for the file copy operation to complete. You can observe the progress by running the following command:<\/p>\n<p>e) Monitor the progress of the VM and file copy operation:<br \/>\nCommand:-<\/p>\n<blockquote><p>gcloud compute instances tail-serial-port-output iso-copier \\<br \/>\n&#8211;zone=$(gcloud config get-value compute\/zone)<\/p><\/blockquote>\n<p>f) Wait for the VM to finish running the startup script:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-708\" src=\"https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/12\/pasted-image-0-1.png\" alt=\"Upgrade for Windows Server on Google Cloud\" width=\"803\" height=\"253\" srcset=\"https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/12\/pasted-image-0-1.png 803w, https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/12\/pasted-image-0-1-300x95.png 300w, https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/12\/pasted-image-0-1-768x242.png 768w, https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/12\/pasted-image-0-1-800x252.png 800w\" sizes=\"auto, (max-width: 803px) 100vw, 803px\" \/><\/p>\n<p>g) Shut down and delete the temporary VM:<br \/>\nCommand:-<\/p>\n<blockquote><p>gcloud compute instances delete iso-copier \\<br \/>\n&#8211;zone=$(gcloud config get-value compute\/zone) \\<br \/>\n&#8211;quiet<\/p><\/blockquote>\n<p>h) Create an image from the disk:<br \/>\nCommand:-<\/p>\n<blockquote><p>gcloud compute images create $DISK_NAME \\<br \/>\n&#8211;source-disk=$DISK_NAME \\<br \/>\n&#8211;source-disk-zone=$(gcloud config get-value compute\/zone)<\/p><\/blockquote>\n<p><strong>Step 6: Attach the Disk to Your VM in Read-Only Mode<\/strong><br \/>\nCommand:-<\/p>\n<blockquote><p>gcloud compute instances attach-disk VM_NAME &#8211;disk=CUSTOM_MEDIA_DISK &#8211;mode=ro &#8211;zone=ZONE<\/p><\/blockquote>\n<p><strong>Step 7: Start the Upgrade VM<\/strong><br \/>\nTake an RDP connection to the server with the attached extra volume. Ensure that you have two disks: one for the ISO file and another for Windows Server update files.<\/p>\n<p><strong>Step 8: Select the Version and Start the Update<\/strong><br \/>\nNavigate to the Windows Server version you want to update to, click on the version, open the folder, and start the update. Accept the terms and conditions, choose to keep files as-is, and proceed with the update.<\/p>\n<p><strong>Step 9: Monitor the Update Process<\/strong><br \/>\nThe update process may take over 1.5 hours. Monitor the serial port log for progress. After this period, the VM may temporarily lose connection, but check the serial port log to confirm that the update is in progress.<\/p>\n<p><strong>Conclusion:<\/strong><br \/>\nBy following these comprehensive steps, you can successfully perform an in-place upgrade for Windows Server on the Google Cloud Platform. Keep track of the progress, be patient during the update process, and ensure you have backups in place to mitigate any potential issues.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Upgrading your Windows Server on Google Cloud Platform (GCP) is a critical task to ensure you benefit from the latest features and security updates. In this blog post, we will walk you through the detailed steps outlined in the Google Cloud documentation for performing an in-place upgrade for Windows Server. Step 1: Take a Clone of the Server Before the<\/p>\n<p><a class=\"more-link\" href=\"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":716,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[70],"tags":[],"class_list":["post-702","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud-solution"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Performing In-Place Upgrade for Windows Server on Google Cloud: A Comprehensive Guide - Blog | Shivaami<\/title>\n<meta name=\"description\" content=\"Discover the essential steps for a seamless Windows Server upgrade on Google Cloud Platform (GCP). Elevate your server performance effortlessly!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Performing In-Place Upgrade for Windows Server on Google Cloud: A Comprehensive Guide - Blog | Shivaami\" \/>\n<meta property=\"og:description\" content=\"Discover the essential steps for a seamless Windows Server upgrade on Google Cloud Platform (GCP). Elevate your server performance effortlessly!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog | Shivaami\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/shivaamicloudservices\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-10T06:23:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-26T10:32:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/07\/Upgrade-Windows.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"776\" \/>\n\t<meta property=\"og:image:height\" content=\"310\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Punit Thakkar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@shivaami\" \/>\n<meta name=\"twitter:site\" content=\"@shivaami\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Punit Thakkar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/\"},\"author\":{\"name\":\"Punit Thakkar\",\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/#\\\/schema\\\/person\\\/7a796f180e3063c2fa97dae329337b01\"},\"headline\":\"Performing In-Place Upgrade for Windows Server on Google Cloud: A Comprehensive Guide\",\"datePublished\":\"2023-07-10T06:23:54+00:00\",\"dateModified\":\"2023-12-26T10:32:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/\"},\"wordCount\":787,\"image\":{\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/Upgrade-Windows.jpg\",\"articleSection\":[\"Cloud Solution\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/\",\"url\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/\",\"name\":\"Performing In-Place Upgrade for Windows Server on Google Cloud: A Comprehensive Guide - Blog | Shivaami\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/Upgrade-Windows.jpg\",\"datePublished\":\"2023-07-10T06:23:54+00:00\",\"dateModified\":\"2023-12-26T10:32:14+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/#\\\/schema\\\/person\\\/7a796f180e3063c2fa97dae329337b01\"},\"description\":\"Discover the essential steps for a seamless Windows Server upgrade on Google Cloud Platform (GCP). Elevate your server performance effortlessly!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/Upgrade-Windows.jpg\",\"contentUrl\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/Upgrade-Windows.jpg\",\"width\":776,\"height\":310,\"caption\":\"Upgrade for Windows Server on Google Cloud\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Performing In-Place Upgrade for Windows Server on Google Cloud: A Comprehensive Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/\",\"name\":\"Blog | Shivaami\",\"description\":\"Latest Updates on Cloud Email Solution, Quick Tips, News and More.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/#\\\/schema\\\/person\\\/7a796f180e3063c2fa97dae329337b01\",\"name\":\"Punit Thakkar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/80a47497b3a0e9c5c0ea60fd9f1fa47102ffdc59be519a78a3e097d13782b604?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/80a47497b3a0e9c5c0ea60fd9f1fa47102ffdc59be519a78a3e097d13782b604?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/80a47497b3a0e9c5c0ea60fd9f1fa47102ffdc59be519a78a3e097d13782b604?s=96&d=mm&r=g\",\"caption\":\"Punit Thakkar\"},\"url\":\"https:\\\/\\\/www.shivaami.com\\\/blog\\\/author\\\/marketing\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Performing In-Place Upgrade for Windows Server on Google Cloud: A Comprehensive Guide - Blog | Shivaami","description":"Discover the essential steps for a seamless Windows Server upgrade on Google Cloud Platform (GCP). Elevate your server performance effortlessly!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/","og_locale":"en_US","og_type":"article","og_title":"Performing In-Place Upgrade for Windows Server on Google Cloud: A Comprehensive Guide - Blog | Shivaami","og_description":"Discover the essential steps for a seamless Windows Server upgrade on Google Cloud Platform (GCP). Elevate your server performance effortlessly!","og_url":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/","og_site_name":"Blog | Shivaami","article_publisher":"https:\/\/www.facebook.com\/shivaamicloudservices","article_published_time":"2023-07-10T06:23:54+00:00","article_modified_time":"2023-12-26T10:32:14+00:00","og_image":[{"width":776,"height":310,"url":"https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/07\/Upgrade-Windows.jpg","type":"image\/jpeg"}],"author":"Punit Thakkar","twitter_card":"summary_large_image","twitter_creator":"@shivaami","twitter_site":"@shivaami","twitter_misc":{"Written by":"Punit Thakkar","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/#article","isPartOf":{"@id":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/"},"author":{"name":"Punit Thakkar","@id":"https:\/\/www.shivaami.com\/blog\/#\/schema\/person\/7a796f180e3063c2fa97dae329337b01"},"headline":"Performing In-Place Upgrade for Windows Server on Google Cloud: A Comprehensive Guide","datePublished":"2023-07-10T06:23:54+00:00","dateModified":"2023-12-26T10:32:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/"},"wordCount":787,"image":{"@id":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/07\/Upgrade-Windows.jpg","articleSection":["Cloud Solution"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/","url":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/","name":"Performing In-Place Upgrade for Windows Server on Google Cloud: A Comprehensive Guide - Blog | Shivaami","isPartOf":{"@id":"https:\/\/www.shivaami.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/#primaryimage"},"image":{"@id":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/07\/Upgrade-Windows.jpg","datePublished":"2023-07-10T06:23:54+00:00","dateModified":"2023-12-26T10:32:14+00:00","author":{"@id":"https:\/\/www.shivaami.com\/blog\/#\/schema\/person\/7a796f180e3063c2fa97dae329337b01"},"description":"Discover the essential steps for a seamless Windows Server upgrade on Google Cloud Platform (GCP). Elevate your server performance effortlessly!","breadcrumb":{"@id":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/#primaryimage","url":"https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/07\/Upgrade-Windows.jpg","contentUrl":"https:\/\/www.shivaami.com\/blog\/wp-content\/uploads\/2023\/07\/Upgrade-Windows.jpg","width":776,"height":310,"caption":"Upgrade for Windows Server on Google Cloud"},{"@type":"BreadcrumbList","@id":"https:\/\/www.shivaami.com\/blog\/performing-in-place-upgrade-for-windows-server-on-google-cloud-a-comprehensive-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.shivaami.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Performing In-Place Upgrade for Windows Server on Google Cloud: A Comprehensive Guide"}]},{"@type":"WebSite","@id":"https:\/\/www.shivaami.com\/blog\/#website","url":"https:\/\/www.shivaami.com\/blog\/","name":"Blog | Shivaami","description":"Latest Updates on Cloud Email Solution, Quick Tips, News and More.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.shivaami.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.shivaami.com\/blog\/#\/schema\/person\/7a796f180e3063c2fa97dae329337b01","name":"Punit Thakkar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/80a47497b3a0e9c5c0ea60fd9f1fa47102ffdc59be519a78a3e097d13782b604?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/80a47497b3a0e9c5c0ea60fd9f1fa47102ffdc59be519a78a3e097d13782b604?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/80a47497b3a0e9c5c0ea60fd9f1fa47102ffdc59be519a78a3e097d13782b604?s=96&d=mm&r=g","caption":"Punit Thakkar"},"url":"https:\/\/www.shivaami.com\/blog\/author\/marketing\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.shivaami.com\/blog\/wp-json\/wp\/v2\/posts\/702","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.shivaami.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.shivaami.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.shivaami.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.shivaami.com\/blog\/wp-json\/wp\/v2\/comments?post=702"}],"version-history":[{"count":8,"href":"https:\/\/www.shivaami.com\/blog\/wp-json\/wp\/v2\/posts\/702\/revisions"}],"predecessor-version":[{"id":715,"href":"https:\/\/www.shivaami.com\/blog\/wp-json\/wp\/v2\/posts\/702\/revisions\/715"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.shivaami.com\/blog\/wp-json\/wp\/v2\/media\/716"}],"wp:attachment":[{"href":"https:\/\/www.shivaami.com\/blog\/wp-json\/wp\/v2\/media?parent=702"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.shivaami.com\/blog\/wp-json\/wp\/v2\/categories?post=702"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.shivaami.com\/blog\/wp-json\/wp\/v2\/tags?post=702"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}