---
title: "Google Cloud PlatformでWindows Server 2012 R2! | grasys blog"
url: "https://blog.grasys.io/post/yusukeh/gce-windows-server-2012-r2"
description: "beta出ました！ まずImageからDisk作成 2012のイメージから起動すると30GBしかないので Googleの中の人に聞いて以下をやってます。 Creating and attaching a Windows root persistent disk Instance生成 ちょっと諸事情あって32coreではなく16coreで！ WindowsのLoginPassword取得！ metadataのあたりにUser/Passwo…"
---

# Google Cloud PlatformでWindows Server 2012 R2!

-   ![](/_astro/noicon.CTHOhNiB_1HMs6A.webp)[yusukeh](/authors/yusukeh/)
-   公開日：2015年3月26日
-   カテゴリー：[Tech](/categories/tech/)
-   タグ：[#Google Cloud](/tags/google-cloud/)[#Compute Engine](/tags/compute-engine/)[#Windows Server](/tags/windows-server/)

![Google Cloud PlatformでWindows Server 2012 R2!](/_astro/ogp.CjDaklZp_Z16IWG9.webp)

beta出ました！

Plain textcontent\_copy

```
gcloud compute images list | grep windows
windows-server-2008-r2-dc-v20150310 windows-cloud windows-2008-r2 READY
windows-server-2012-r2-dc-v20150310 windows-cloud windows-2012-r2 READY
```

## まずImageからDisk作成

2012のイメージから起動すると30GBしかないので  
Googleの中の人に聞いて以下をやってます。

[Creating and attaching a Windows root persistent disk](https://cloud.google.com/compute/docs/operating-systems/windows#creating_and_attaching_a_windows_root_persistent_disk)

Plain textcontent\_copy

```
gcloud compute disks create win2012 \
  --image windows-2012-r2 \
  --zone asia-east1-b — size 200GB
```

## Instance生成

Plain textcontent\_copy

```
gcloud compute instances create win2012 \
  --machine-type n1-highmem-16 \
  --disk name=win2012 boot=yes \
  --zone asia-east1-b
```

ちょっと諸事情あって32coreではなく16coreで！

## WindowsのLoginPassword取得！

Plain textcontent\_copy

```
gcloud compute instances describe win2012 --zone asia-east1-b
```

metadataのあたりにUser/Passwordがあるのでそれで接続してごにょごにょ設定する！

うごいてる〜〜〜ｗ

転載：[Google Cloud PlatformでWindows Server 2012 R2!](https://medium.com/@yusuke_h/google-cloud-platform%E3%81%A7windows-server-2012-r2-99e116c66fb9)

この記事は [Medium（@yusuke\_h）](https://medium.com/@yusuke_h) からの転載です。

## この記事を書いた人

[![](/_astro/yusukeh.BvUd2yKE_1mQ6Fp.webp)](/authors/yusukeh/)

### [yusukeh](/authors/yusukeh/)

Fly high. Think deep. Move fast. Go far.🦅

-   [X](https://x.com/yusukeh "X")
-   [GitHub](https://github.com/yusukeh "GitHub")
-   [Medium](https://medium.com/@yusukeh "Medium")
-   [Facebook](https://www.facebook.com/yusuke.exzm "Facebook")
-   [Instagram](https://www.instagram.com/yusukehasegawa/ "Instagram")
-   [LinkedIn](https://www.linkedin.com/in/hasegawa-yusuke-091b4164/ "LinkedIn")

[プロフィールと記事一覧](/authors/yusukeh/)