FileShare を使用してフォルダーを共有しようとしていますが、このエラーが発生します。何か案が?
Coppying WixCommonLib
Coppying TNSORA
running Candle, candle.exe -ext WixIisExtension Product.wxs
Microsoft (R) Windows Installer Xml Compiler version 3.5.2519.0
Copyright (C) Microsoft Corporation. All rights reserved.
Product.wxs
Product.wxs(41) : error CNDL0005 : The Component element contains an unexpected child element 'FileShare'.
Product.wxs(44) : error CNDL0005 : The Component element contains an unexpected child element 'User'.
スクリプトは次のとおりです。
<Component Id="FilesShareComp" Win64="yes" Guid="801595A6-4CB0-481B-892E-C37A48954DD9">
<FileShare Id="FilesShare" Name="MyFolder" Description="MyFolder">
<Permission User="sharedusers" GenericAll="yes" />
</FileShare>
<User Id="shareduser" Name="testuser" CreateUser="No" Domain="[ComputerName]" Password="Password1" FailIfExists="no">
</User>
</Component>