如何在gcp中运行Windows启动脚本?

时间:2019-03-11 10:23:37

标签: google-cloud-platform startupscript

我正在尝试通过gcp python sdk启动Windows实例。我不明白语法是否错误或gcp在实例中未运行我的脚本。

    net use \\IPADDRESS\FOLDER password /user:user /persistent:yes
    set mac=
    set x_AppID=abcd
    for /f %F in ('GETMAC ^| findstr Device') do set mac=%F
    for %M in (%mac:-=%) do echo x_AppID > \\IPADDRESS\FOLDER\SUBFOLDER\%M.gcp

在上面的代码中,我想挂载文件系统,获取mac地址并将该appid写入名为macadress.gcp的文件。在元数据中,我将键指定为windows-startup-script-cmd,还尝试了windows-startup-script-ps1,但它们都不起作用。 请帮我为什么我的启动脚本没有运行。

0 个答案:

没有答案