当前位置: 建站>运营/SEO
本页文章导读:
▪不能为虚拟电脑开一个新任务. No error info. 返回 代码:E_FAIL (0x80004005) 组件:ProgressProxy 界面:IProgre 前几个月想把vm创建的centos拿到oracle vm virtualbox里面运行,谁知道运行不起,恰好还修改了原本oracle vm virtualbox里面的ubuntu 11.10的一些设置,再次启动ubuntu 11.10时提示:不能为虚拟电脑 ubuntu11.10.........
▪chrome os 写入usb中的相关的问题 在准备写入chrome os到U盘中的时候,出现了an error occurred when attempting to get a handle on th file,Error 8这个错误,找了半天才知道原来是在加载的*.img文件中的时候,出现了中文的字,所以出错了,去.........
▪SharePoint的安装和配置-PowerShell 1. 引入SPModule组件
Import-Module SPModule.misc
Import-Module SPModule.setup
需要将执行策略修改为不限制
2. 无人值守安装SharePoint
Install-SharePoint –setupexepath D:\setup.exe –configxmlpath
c:\config.xml
配置文件示.........
[1]不能为虚拟电脑开一个新任务. No error info. 返回 代码:E_FAIL (0x80004005) 组件:ProgressProxy 界面:IProgre
来源: 互联网 发布时间: 2013-10-31
前几个月想把vm创建的centos拿到oracle vm virtualbox里面运行,谁知道运行不起,恰好还修改了原本oracle vm virtualbox里面的ubuntu 11.10的一些设置,再次启动ubuntu 11.10时提示:不能为虚拟电脑 ubuntu11.10 打开一个新任务. No error info. 返回 代码:E_FAIL (0x80004005) 组件:ProgressPr,很郁闷,一番折腾后无果只好放弃了,今天想起了又打开oracle vm virtualbox,碰巧找到一些信息,试了一下成功了,操作如下:
把IDE控制器下的多余磁盘删掉就好了,下面图片是删掉以后的状态,然后再启动虚拟机应该就可以了。
作者:LinuxZhouYing 发表于2013-6-19 16:45:26 原文链接
阅读:62 评论:0 查看评论
[2]chrome os 写入usb中的相关的问题
来源: 互联网 发布时间: 2013-10-31
在准备写入chrome os到U盘中的时候,出现了an error occurred when attempting to get a handle on th file,Error 8这个错误,找了半天才知道原来是在加载的*.img文件中的时候,出现了中文的字,所以出错了,去掉中文路径进行了。。。
作者:zfqzpp 发表于2013-6-19 20:38:51 原文链接
阅读:64 评论:0 查看评论
[3]SharePoint的安装和配置-PowerShell
来源: 互联网 发布时间: 2013-10-31
1. 引入SPModule组件
Import-Module SPModule.misc Import-Module SPModule.setup
需要将执行策略修改为不限制
2. 无人值守安装SharePoint
Install-SharePoint –setupexepath D:\setup.exe –configxmlpath c:\config.xml
配置文件示例
<Configuration> <Package Id="sts"> <Setting Id="LAUNCHEDFROMSETUPSTS" Value="Yes"/> </Package> <Package Id="spswfe"> <Setting Id="SETUPCALLED" Value="1"/> </Package> <Logging Type="verbose" Path="%temp%" Template="SharePoint Server Setup(*).log"/> <!--<PIDKEY Value="Enter Product Key Here" />--> <Setting Id="SERVERROLE" Value="APPLICATION"/> <Setting Id="USINGUIINSTALLMODE" Value="1"/> <Setting Id="SETUPTYPE" Value="CLEAN_INSTALL"/> <Setting Id="SETUP_REBOOT" Value="Never"/> </Configuration>
反注释PIDKEY,在Value属性处输入序列号
但是出于安全考虑,你可能不想把序列号存储在配置文件中,则可添加命令参数PIDKey
Install-SharePoint –setupexepath D:\setup.exe –configxmlpath c:\config.xml -PIDKey "ABDCE-FGHIJ-KLMNO-PQRST-UVWXY"
3. 配置一个新的SharePoint场
New-SharePointFarm -databaseserver <server name> -databaseaccessaccount (Get-Credential <domain\account>) -farmname <name of new farm> -passphrase (ConvertTo-SecureString -asplaintext -force -string "Enter a farm pass phrase here")
4. 添加一个服务器到SharePoint场
Join-SharePointFarm –databaseserver <database server name> -configurationdatabasename <config database> -passphrase (ConvertTo-SecureString -asplaintext -force -string "<farm pass phrase>")
5. 创建一个Web应用程序
New-SPWebApplication –applicationpool <name of new application pool> -name <name of new web app> -applicationpoolaccount <service account to be used for the application pool> -port <desired port number>
例如
New-SPWebApplication –applicationpool SharePoint-80 -name SharePoint-80 -applicationpoolaccount SP\AppPoolAccount -port 80
6. 创建一个网站集
New-SPSite –url <full url of new site collection> -name <name of new site collection> -owneralias <site collection administrator> -template <site collection template to use>
例如
New-SPSite –url http://sp2010/ -name Home -owneralias SP\SiteAdmin -template STS#0
网站模板名称可以通过Get-SPWebTemplates命令获得
7. 创建一个网站
New-SPWeb –url <full url of new site> -name <name of new site> -template <site template to use> -AddToTopNav(Optional) -UniquePermissions(Optional) -UseParentTopNav(Optional)
例如
New-SPWeb –url http://sp2010/PSSubSite -name "PS Sub Site" -template STS#0 –AddToTopNav –UniquePermissions -UseParentTopNav
作者:FoxDave 发表于2013-6-19 20:01:05 原文链接
阅读:79 评论:0 查看评论
最新技术文章: