quillypowers

Results 8 comments of quillypowers

If you're saying the account has no password because it's a gmsa, you can assign below to the credential. Credential = New-Object System.Management.Automation.PSCredential("Domain\Account", (ConvertTo-SecureString "Test" -AsPlainText -Force)) But if it's...

Your change looks like a good approach, thanks for the design/thought/time.

You can't remove the SA account ________________________________ From: Paul J. Wilcox Sent: Monday, December 14, 2020 6:36 PM To: dsccommunity/SqlServerDsc Cc: quillypowers ; Author Subject: Re: [dsccommunity/SqlServerDsc] SqlLogin: Should support...

JIC someone stumbles on this, below will enable, but it's just modifying the registry via computermanagementdsc. This is relevant to sql 2016 so change version appropriately. Registry RegistrySqlEnableFilestream { Ensure...

Hah, I just ran into this. Since it looks like it never gained traction I'm using the computermanagementdsc and adding the registry modification below (applicable for sql 2016). Registry RegistrySqlEnableFilestream...

I've been able to get apphost level auth working via passing in params like below ("adminauth","MACHINE/WEBROOT/APPHOST","system.webServer/security/authorization",".","add","accessType","Allow","users","Administrator","Present"), $ConfigurationData.NonNodeData.Roles.([String]($Node.Role -eq "WEBSMTP")).ConfigColls.foreach({ WebConfigPropertyCollection $_[0] { WebsitePath = $_[1] Filter = $_[2] CollectionName =...

I did verify above works. Test seemed to work, but need to sift through still. I'm on webadministration 4.1.0 too. The same should work for doing site level auth with...

The latest version of this doesn't seem to support hsts. $WebConfiguration.Schema.CollectionSchema.GetAddElementSchema($AddElement) returns 0X80070585 or The element specified by bstrElementName cannot be found.