Applies ToProject Online Desktop Client Project Professional 2021 Project Professional 2019 Project Professional 2016 Project Professional 2013

Per connettere Project Professional a Project Web App, è necessario configurare il Project Web App in Project Professional. Anche se è possibile eseguire questa operazione in Project Professional, è anche possibile farlo in modo rapido e automatizzato usando Windows PowerShell.

Questo script Windows PowerShell crea le chiavi del Registro di sistema necessarie per connettere Project Professional 2013, Project Professional 2016 o Client desktop di Project Online a Project Web App.

Salvare lo script seguente in un file denominato CreateAccounts.ps1.

#
# This script will create the account for Project Pro for O365 to connect to Project Online. 
# 
# Execute this script with two parameters: the account name and PWA URL
#
# ./CreateAccount.ps1 PWA https://contoso.sharepoint.com/sites/pwa
#
############################################################################

Param(
  [string]$accountName,
  [string]$pwaURL
)

function CreateAccount ($keyPath, $accountName, $pwaURL)  {

    $guid = [System.Guid]::NewGuid()

    New-Item -Path "$keyPath$accountName"
    New-ItemProperty -Path "$keyPath$accountName" -Name Name -PropertyType String -Value $accountName
    New-ItemProperty -Path "$keyPath$accountName" -Name GUID -PropertyType String -Value "{$guid}"
    New-ItemProperty -Path "$keyPath$accountName" -Name Path -PropertyType String -Value $pwaURL
}


function CreateProjectOnlineAccount ($accountName, $pwaURL)
{
    $15keyPath = "HKCU:\Software\Microsoft\Office\15.0\MS Project\Profiles\"
    $16keyPath = "HKCU:\Software\Microsoft\Office\16.0\MS Project\Profiles\"

    If (Test-Path($15keyPath)) {
  
        CreateAccount $15keyPath $accountName $pwaURL
    }


    If (Test-Path($16keyPath)) {
        CreateAccount $16keyPath $accountName $pwaURL
    }
}

CreateProjectOnlineAccount $accountName $pwaURL 

Quando si esegue lo script, passare due parametri:

  • Nome che si vuole assegnare all'account in Project Professional

  • URL del sito di Project Web App

Per eseguire lo script, aprire una finestra di comando Windows PowerShell come amministratore e quindi eseguire lo script passando i due parametri.

Ad esempio:

./CreateAccount.ps1 PWA https://contoso.sharepoint.com/sites/pwa

Serve aiuto?

Vuoi altre opzioni?

Esplorare i vantaggi dell'abbonamento e i corsi di formazione, scoprire come proteggere il dispositivo e molto altro ancora.

Le community aiutano a porre e a rispondere alle domande, a fornire feedback e ad ascoltare gli esperti con approfondite conoscenze.