We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9760f1 commit ca2576bCopy full SHA for ca2576b
scripts/MsProdUpdate.ps1
@@ -174,6 +174,9 @@ function Get-ExternalDocsUrl {
174
}
175
else {
176
#Create file if it doesn't exist
177
+ if (-not(Test-Path -PathType Container $MissingMsProdHeaderPath)) {
178
+ New-Item -ItemType Directory -Force -Path $MissingMsProdHeaderPath
179
+ }
180
$MissingMetaData = "$MissingMsProdHeaderPath\MissingMsProd.csv"
181
if (-not (Test-Path $MissingMetaData)) {
182
"Graph profile, Command, UriPath" | Out-File -FilePath $MissingMetaData -Encoding ASCII
0 commit comments