Raymond Piller
Raymond Piller
Should be able to specify the LanguageTool API server as an alternative, too. If you're going to manage LanguageTool separately, why insist it be on the same box? With LanguageTool...
Just realized this may be the same thing as #21 ... 👍
Key was to install `PSDepend` (`Install-Module PSDepend -Force`). This should probably be handled as a first step in the `.Build.ps1`. Something like this, maybe: ```powershell [CmdletBinding()] param( [switch]$Force ) $Install_Module...
[Thanks for the update](https://powershell.org/forums/topic/howto-optional-configuration/#post-96995), I've just started the build and will let you know of progress I make.
> ERROR: The required module 'xDscResourceDesigner' is not loaded. Load the module or remove the module from 'RequiredModules' in the file 'C:\Temp\Git\DscInfraSample\BuildOutput\modules\DscBuildHelpers\DscBuildHelpers.psd1'. > Import-Module : The specified module 'xPSDesiredStateConfiguration' was...
Works great now. The video is perfect. Thanks so much for taking the time to make it and help me through this. The final `BuildOutput` folder has the following structure...
How would you handle variable injection within the YAML? I want the Node to look for a configuration with it's `$env:ComputerName` as the file name. Maybe I'm configuring the LCMs...
I wonder if [.build](https://github.com/gaelcolas/DscInfraSample/tree/DEV/.build), [RootConfiguration.ps1](https://github.com/gaelcolas/DscInfraSample/tree/DEV/RootConfiguration.ps1), and [RootMetaMOF.ps1](https://github.com/gaelcolas/DscInfraSample/tree/DEV/RootMetaMOF.ps1) should all be made into functions and made to be part of [Datum](https://github.com/gaelcolas/Datum) ... I feel like this repo should be just `DSC_ConfigData`,...
I keep getting following error when running `.Build.ps1`, and I'm feeling a bit stuck: > PSDesiredStateConfiguration\node : The term 'xWallpaper' is not recognized as the name of a cmdlet, function,...
I finally got it working in a way that I'm happy with. It includes some splatting of the resource. I'll fork this repo and show my changes when I have...