This was really useful and really well explained. Thanks :)
@InTheMirrorr2 жыл бұрын
Thank you very much for this video!
@joseborgesleal91242 жыл бұрын
Qual a configuração do vscode
@murattasova75982 жыл бұрын
Hi Kamil, Thanks its was very good explain. I would like to know if you are using some framework with a library of function and json files to set all kind of variable. I saw someone using it but unfortunately did not have the chance to ask him about the hows :) Do you have such a work method. I am very chaotic so I am looking for a way to bring a little more order.
@kamilpro2 жыл бұрын
Hi, so if I’m understanding correctly, you’d like to load preconfigured variables to your current session/script? If so there are three ways I can think of: Create a separate script, which all does is assign variables with values, then call that script with . PathToScript Have a .psd1 file (which effectively takes only hashtables) and and load it with Import-PowerShellDataFile Have a json file with values, and execute it with $vars = Get-Content file.json | ConvertFrom-Json Does it help in any way?