Can anyone advice on how to automated Windows EMC Networker 19.4 deployment.
I'd like to automate the creation of groups, policies, and workflows, and documentation or examples would be highly appreciated, ideally with PowerShell.
Essentially, just copy the commands that you would use when you run nsradmin interactively. You will find examples in the command line reference but also in the internet. Just google for nsradmin. Here are just some links:
By now I have automated creation of Workflow, integration with clients, protection groups, policies but I am not able to create actions using powershell. I am using holdmybeer link and crazyrov videos to get my job done but seems that it is not enough. Can someone guide me on how to create an action using Powershell which uses Networker api. I need to automate the creation of actions as well.
It would be really great if someone comes up with a solution.
I have automated the exact thing you have mentioned above. Which country are you from and what help do you need.
The above mentioned things are automatable and can be automated using the Networker Rest API. You can take help of the official document available on google and you will get a fair idea of how to build queries for this purpose. Generally you will be required to use Put and Post method to achieve this automation
bingo.1
1 Rookie
•
2430 Posts
1428
1
Posted May 11th, 2021 11:00
You can prepare appropriate text files for the CLI administriation interface nsradmin.
The 2 core steps are:
- prepare the appropriate text file
- run nsradmin -i inputfile.txt to create the resource
This is easy and of course you can also prepare and run everything from PowerShell.
More details on how to use nsradmin can be found in the Command Line Reference manual.
You will also find some examples in the internet.
WARNING
- Simple resources like clients are easy
- Due to the nature the creation of policies and workflows will become a nightmare (IMHO)
Good luck...