2016-12-14 55 views
2

我正在試驗Project Rome,我在找到我的Xbox控制檯時遇到了一些問題。羅馬項目 - 訪問Xbox控制檯

我可以找到我的平板電腦,另一臺筆記本電腦,但我找不到我的Xbox控制檯 - 這是一個開發工具包。我也嘗試將其切換到零售控制檯,但沒有區別。

private RemoteSystemWatcher remoteSystemWatcher; 

remoteSystemWatcher = RemoteSystem.CreateWatcher(); 
remoteSystemWatcher.RemoteSystemAdded += OnDeviceAdded; 
remoteSystemWatcher.Start(); 

private void OnDeviceAdded(RemoteSystemWatcher sender, RemoteSystemAddedEventArgs args) 
{ 
} 

我也試圖通過主機名或IP找到Xbox遊戲機,遺憾的是它引發的異常。 Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))。這與here所述的這種方法似乎是相同的問題。

await RemoteSystem.FindByHostNameAsync(new HostName("....")); 
+0

您是否在XBOX中使用相同的帳戶登錄? –

+0

@ SunteenWu-MSFT是的,我願意。有相同的MS帳戶。 –

回答

0

這似乎是我之前安裝的操作系統的特定版本(10.0.14393.2113)的問題。 現在我安裝了以下版本,它沒有任何問題。

Xbox One Recovery Update [14393.2152.161208-1218] December 14, 2016 

即使這個作品,如果我用我的IP address Xbox遊戲機(帶hostname它不工作)。

await RemoteSystem.FindByHostNameAsync(new HostName("...."));