Il seguente codice PowerShell #Get a server object which corresponds to the default instance $srv = New-Object -TypeName Microsoft.SqlServer.Management.SMO.Server ... rest of the script ... Fornisce il seguente messaggio di errore: New-Object : Cannot find type [Microsoft.SqlServer.Management.SMO.Server]: make sure the assembly containing this type is loaded. At C:\Users\sortelyn\ ... \tools\sql_express_backup\backup.ps1:6 …
Il sistema operativo che sto utilizzando è Windows 7 e la versione di PowerShell installata qui è 2.0. È possibile aggiornarlo alla versione 3.0 o 4.0? Perché ci sono cmdlet che la versione 2.0 non è in grado di riconoscere.
Ho questo script che confronta i file in due aree del disco e copia l'ultimo file su quello con la data di modifica precedente. $filestowatch=get-content C:\H\files-to-watch.txt $adminFiles=dir C:\H\admin\admin -recurse | ? { $fn=$_.FullName; ($filestowatch | % {$fn.contains($_)}) -contains $True} $userFiles=dir C:\H\user\user -recurse | ? { $fn=$_.FullName; ($filestowatch | % {$fn.contains($_)}) …
Come puoi verificare se un oggetto ha una proprietà specifica? Apprezzo che posso fare ... $members = Get-Member -InputObject $myobject e poi foreachtramite $members, ma esiste una funzione per verificare se l'oggetto ha una proprietà specifica? Informazioni aggiuntive: il problema è che sto importando due diversi tipi di file CSV, …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.