Azure ARM Custom Extension fileuri from local host2019 Community Moderator ElectionAzure SQL Database Bacpac Local RestoreDSC ConfigurationData parameter in Azure ARM template deploymentAzure - do not allow Arm template to modify existing resourcesAzure DSC extension for ARM, powershell script will not updateCreate Azure blob/fileshare container through ARM templateIs it possible to export an ARM template for an azure function?Deploy azure arm template from local gitAzure arm intelligent provisioningis it possible to create azure function from ARM template and let it get the code from zip file stored in azure storage?Azure Resource Group Deployment with ARM linked template from non public GIT
How do we create new idioms and use them in a novel?
How do you make a gun that shoots melee weapons and/or swords?
Do black holes violate the conservation of mass?
Difference between `nmap local-IP-address` and `nmap localhost`
Would those living in a "perfect society" not understand satire
Does an unused member variable take up memory?
Finding the minimum value of a function without using Calculus
Is there a logarithm base for which the logarithm becomes an identity function?
How can I portion out frozen cookie dough?
Insult for someone who "doesn't know anything"
What does *dead* mean in *What do you mean, dead?*?
Why does this boat have a landing pad? (SpaceX's GO Searcher) Any plans for propulsive capsule landings?
The preposition for the verb (avenge) - avenge sb/sth (on OR from) sb
Sampling from Gaussian mixture models, when are the sampled data independent?
How to write a chaotic neutral protagonist and prevent my readers from thinking they are evil?
Did Amazon pay $0 in taxes last year?
Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?
Is there stress on two letters on the word стоят
Idiom for feeling after taking risk and someone else being rewarded
Why aren't there more Gauls like Obelix?
Is it a Cyclops number? "Nobody" knows!
Is there a way to make cleveref distinguish two environments with the same counter?
When an outsider describes family relationships, which point of view are they using?
How do I increase the number of TTY consoles?
Azure ARM Custom Extension fileuri from local host
2019 Community Moderator ElectionAzure SQL Database Bacpac Local RestoreDSC ConfigurationData parameter in Azure ARM template deploymentAzure - do not allow Arm template to modify existing resourcesAzure DSC extension for ARM, powershell script will not updateCreate Azure blob/fileshare container through ARM templateIs it possible to export an ARM template for an azure function?Deploy azure arm template from local gitAzure arm intelligent provisioningis it possible to create azure function from ARM template and let it get the code from zip file stored in azure storage?Azure Resource Group Deployment with ARM linked template from non public GIT
In azure ARM Templates I'm trying to execute a script from my local machine in the newly provisioned Azure VM.
The options which I see till now are git and azure storage.
My question is: is there a way to execute the file from local machine
add a comment |
In azure ARM Templates I'm trying to execute a script from my local machine in the newly provisioned Azure VM.
The options which I see till now are git and azure storage.
My question is: is there a way to execute the file from local machine
add a comment |
In azure ARM Templates I'm trying to execute a script from my local machine in the newly provisioned Azure VM.
The options which I see till now are git and azure storage.
My question is: is there a way to execute the file from local machine
In azure ARM Templates I'm trying to execute a script from my local machine in the newly provisioned Azure VM.
The options which I see till now are git and azure storage.
My question is: is there a way to execute the file from local machine
edited 2 days ago
4c74356b41
30.8k42456
30.8k42456
asked Mar 6 at 21:40
Mohamed AmrMohamed Amr
24
24
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
No, there is no way of doing that with custom script extension. You can use Invoke-AzVmRunCommand or az vm run-command. They are designed specifically for that
really thanks for this, really was searching for this .. do you have a guide for creating these templates
– Mohamed Amr
2 days ago
i dont think you can use that from the templates, since its a local script, it doesnt make sense
– 4c74356b41
2 days ago
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55032607%2fazure-arm-custom-extension-fileuri-from-local-host%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
No, there is no way of doing that with custom script extension. You can use Invoke-AzVmRunCommand or az vm run-command. They are designed specifically for that
really thanks for this, really was searching for this .. do you have a guide for creating these templates
– Mohamed Amr
2 days ago
i dont think you can use that from the templates, since its a local script, it doesnt make sense
– 4c74356b41
2 days ago
add a comment |
No, there is no way of doing that with custom script extension. You can use Invoke-AzVmRunCommand or az vm run-command. They are designed specifically for that
really thanks for this, really was searching for this .. do you have a guide for creating these templates
– Mohamed Amr
2 days ago
i dont think you can use that from the templates, since its a local script, it doesnt make sense
– 4c74356b41
2 days ago
add a comment |
No, there is no way of doing that with custom script extension. You can use Invoke-AzVmRunCommand or az vm run-command. They are designed specifically for that
No, there is no way of doing that with custom script extension. You can use Invoke-AzVmRunCommand or az vm run-command. They are designed specifically for that
answered 2 days ago
4c74356b414c74356b41
30.8k42456
30.8k42456
really thanks for this, really was searching for this .. do you have a guide for creating these templates
– Mohamed Amr
2 days ago
i dont think you can use that from the templates, since its a local script, it doesnt make sense
– 4c74356b41
2 days ago
add a comment |
really thanks for this, really was searching for this .. do you have a guide for creating these templates
– Mohamed Amr
2 days ago
i dont think you can use that from the templates, since its a local script, it doesnt make sense
– 4c74356b41
2 days ago
really thanks for this, really was searching for this .. do you have a guide for creating these templates
– Mohamed Amr
2 days ago
really thanks for this, really was searching for this .. do you have a guide for creating these templates
– Mohamed Amr
2 days ago
i dont think you can use that from the templates, since its a local script, it doesnt make sense
– 4c74356b41
2 days ago
i dont think you can use that from the templates, since its a local script, it doesnt make sense
– 4c74356b41
2 days ago
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55032607%2fazure-arm-custom-extension-fileuri-from-local-host%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown