2012-06-08 56 views
0

我嘗試使用下面的命令來更改OS X機的計算機信息字段:設置計算機信息的字段ARD UNIX命令

system_profiler SPAirPortDataType | awk '/MAC Address:/{print $NF}' | /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -computerinfo -set1 -1 

我有它的問題,並知道上面沒有對。有誰知道更好的方法?

回答

1

沒關係我想通了:使用後

sudo defaults write /Library/Preferences/com.apple.RemoteDesktop \Text1 $(system_profiler SPAirPortDataType | awk '/MAC Address:/{print $NF}') 

重啓:

/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -restart -agent -console 
0

這裏是爲那些有興趣的另一種方式:

/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -computerinfo -set1 -1 $(system_profiler SPAirPortDataType | awk '/MAC Address:/{print $NF}')