We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f678a6b commit 4cf4558Copy full SHA for 4cf4558
1 file changed
Examples/Sample_xOfflineDomainJoin.ps1
@@ -0,0 +1,21 @@
1
+configuration Sample_xOfflineDomainJoin
2
+{
3
+ param
4
+ (
5
+ [string[]]$NodeName = 'localhost'
6
+ )
7
+
8
+ Import-DSCResource -ModuleName xComputerManagement
9
10
+ Node $NodeName
11
+ {
12
+ xOfflineDomainJoin ODJ
13
14
+ RequestFile = 'C:\ODJ\ODJBlob.txt'
15
+ IsSingleInstance = 'Yes'
16
+ }
17
18
+}
19
20
+Sample_xOfflineDomainJoin
21
+Start-DscConfiguration -Path Sample_xOfflineDomainJoin -Wait -Verbose -Force
0 commit comments