using System; using System.Collections; using UnityEngine; public class Time : MonoBehaviour { // Use this for initialization private void Start() { Debug.Log(System.DateTime.Now); Debug.Log(System.DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));…
刚刚的一篇Blog采用Json Template的方式从已有的VHD创建了一台新的VM.由于Json Template封装的比较好,可以改的内容不多. 下面将介绍通过用Powershell来从已有的VHD创建一台新的VM. 由于Powershell中的各种变量.参数都是可以定义的,所以可以自己去修改.创建. 下面是具体的脚本: function vm-fromvhd{ param( #The VM resource group [Parameter(Mandatory=$true)] [Stri…