- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经创建了 WCF Web 服务并使用 InstallAware 创建了设置,以便我们的客户只需运行设置,它将在 IIS 中部署 Web 服务。我的设置在 IIS 的“默认网站”下创建虚拟目录。一切正常,我的设置在“默认网站”下创建虚拟目录并指向正确的路径,但只有在设置完成之前才会出错。以下是在 IIS 中创建虚拟目录的代码。
if Variable SUCCESS not Equals ERROR
if Variable SUCCESS not Equals CANCEL
Run Program $SUPPORTDIR$\InsertToken1.bat (WAIT)
Get IIS Index for Site "Default Web Site" into DEFAULTWEBSITEINDEXVAR
Create Virtual Folder "WebService" in IIS Site #$DEFAULTWEBSITEINDEXVAR$, pointing to physical location $WWWROOTDIR$WebService
Get System Setting IIS Anonymous User Account into INETUSR
Set Read Permissions on File System Object "$WWWROOTDIR$\WebService" for $INETUSR$
end
end
Create Virtual Folder "WebService" in IIS Site #$DEFAULTWEBSITEINDEXVAR$, pointing to physical location $WWWROOTDIR$WebService
最佳答案
PowerShell 命令将完成所需的工作。与使用 PowerShell 命令创建 FTP 相同
您可以使用 “新网站”在 IIS 中创建网站的命令。
Create FTP using powerShell:
Import-Module WebAdministration
##CREATE FTP SITE AND SET C:\inetpub\ftproot AS HOME DIRECTORY
New-WebFtpSite -Name "FTPTmp" -Port "21" -Force
cmd /c \Windows\System32\inetsrv\appcmd set SITE "FTPTmp" "-virtualDirectoryDefaults.physicalPath:C:\Images"
## Allow SSL connections
Set-ItemProperty "IIS:\Sites\FTPTmp" -Name ftpServer.security.ssl.controlChannelPolicy -Value 0
Set-ItemProperty "IIS:\Sites\FTPTmp" -Name ftpServer.security.ssl.dataChannelPolicy -Value 0
## Enable Basic Authentication
Set-ItemProperty "IIS:\Sites\FTPTmp" -Name ftpServer.security.authentication.basicAuthentication.enabled -Value $true
## Give Authorization to All Users and grant "read"/"write" privileges
Add-WebConfiguration "/system.ftpServer/security/authorization" -value @{accessType="Allow";roles="";permissions="Read,Write";users="*"} -PSPath IIS:\ -location "FTPTmp"
## Restart the FTP site for all changes to take effect
Restart-WebItem "IIS:\Sites\FTPTmp"
关于web-services - 使用 InstallAware 部署 Web 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48064366/
我已经使用 C# 创建了一个 Windows 服务 我可以使用 UnstallUtil.exe 手动安装它 我想用 installAware 创建一个安装程序。您能协助我如何将安装程序设置为自动安装该
我已经创建了 WCF Web 服务并使用 InstallAware 创建了设置,以便我们的客户只需运行设置,它将在 IIS 中部署 Web 服务。我的设置在 IIS 的“默认网站”下创建虚拟目录。一切
我已经通过 installaware 为我的应用程序构建了一个安装程序。我在安装过程中自动将一些字体复制到 windows 字体文件夹。当我打开已安装的应用程序时,字体无法正确显示,直到我打开和关闭
有人知道如何从 InstallShield 或 InstallAware 调用 dll 函数吗? 最佳答案 用户指南: http://kb.flexerasoftware.com/doc/Docume
Delphi IDE 在最近几个版本(2010、XE、XE2、XE3、XE4)中使用 InstallAware 作为安装程序。如果您安装了所有 IDE 版本,则使用正常的 setup.exe 安装
我是一名优秀的程序员,十分优秀!