I am currently pointing to the windows repo in github, but I think I need to add to that or create an internal one for additional packages, but I'd really like to see/understand how others may have approached/solved this type of configuration.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to salt-...@googlegroups.com
Hi Jeff,
I've worked a bit using salt to configure Windows systems. I'm using a masterless configuration at the moment, where the salt install and configuration is deployed to every Windows system via a bootstrap script and executed locally.
Registry updates:
You can use salt to manage the registry, though it's important to realize that AD or local GPO settings will override anything you place in the registry. I chose to use Microsoft's Apply_LGPO_Delta utility to configure the local GPO or registry, and I use salt to manage a file containing the LGPO settings as well as to execute LGPO.
Salt has it's own file distribution mechanism. Do the files have to be on the existing share, or could you move them to the salt master? If you move them, then you can easily use file.managed. file.managed also supports HTTPS, FTP, AWS S3, and Openstack Swift sources, but I don't see a native option for SMB. Do you have the option of fronting the SMB share with a web server and directory browsing?
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to salt-...@googlegroups.com
I'm going to have to second your "Map Network drives" one. I've used:
'net use P: \\a\network\location': cmd.run: - creates: 'P:'
It seems to mount a drive, but the drive appears with a "disconnected" icon when I look at it in My Computer. It's still accessible though. I'm probably going to log this as an issue on the repository. If anyone's found a way around this, I'd love to know.
Jonathan Roy
unread,
Feb 13, 2015, 8:14:37 AM2/13/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to salt-...@googlegroups.com
The drive appears disconnected possibly because it has been created with a different account.
The salt-minion run with the system user and you are most certainly veryfing the state of the drive with another account.
Shem Nguyen
unread,
Mar 31, 2015, 8:27:43 PM3/31/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to salt-...@googlegroups.com
Yep, is there any chance you found a way around this?
Oliver Bestwalter
unread,
May 15, 2015, 8:02:55 AM5/15/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to salt-...@googlegroups.com
Hi,
On Friday, 13 February 2015 14:14:37 UTC+1, Jonathan Roy wrote:
The drive appears disconnected possibly because it has been created with a different account.
The salt-minion run with the system user and you are most certainly veryfing the state of the drive with another account.