imported>Bbon (새 문서: ==기능제거 == ===Operation :=== '''uninstallfeature''' ===Syntax :=== <syntaxhighlight lang="dos"> stsadm -o uninstallfeature -filename <file name> -name <feature folder> ...) |
imported>Bbon 잔글 |
||
(같은 사용자의 중간 판 2개는 보이지 않습니다) | |||
1번째 줄: | 1번째 줄: | ||
==기능제거 == | ==기능제거 == | ||
− | ===Operation | + | ===Operation=== |
'''uninstallfeature''' | '''uninstallfeature''' | ||
− | ===Syntax | + | ===Syntax=== |
<syntaxhighlight lang="dos"> | <syntaxhighlight lang="dos"> | ||
stsadm -o uninstallfeature | stsadm -o uninstallfeature | ||
10번째 줄: | 10번째 줄: | ||
[-force]</syntaxhighlight> | [-force]</syntaxhighlight> | ||
− | ===Sample | + | ===Sample=== |
<syntaxhighlight lang="dos">stsadm -o uninstallfeature -filename "TeamCalList\feature.xml" -force</syntaxhighlight> | <syntaxhighlight lang="dos">stsadm -o uninstallfeature -filename "TeamCalList\feature.xml" -force</syntaxhighlight> | ||
− | ===Parameters | + | ===Parameters=== |
{| class="wikitable" | {| class="wikitable" | ||
!Parameter | !Parameter | ||
40번째 줄: | 40번째 줄: | ||
|Forces the feature to be uninstalled. | |Forces the feature to be uninstalled. | ||
|} | |} | ||
+ | |||
+ | ¶'''filename''', '''name''', '''id''' 매개변수 중 하나를 선택해서 입력해야 한다. | ||
+ | |||
<cite>MSDN Uninstallfeature : Stsadm Operation </cite><ref name="msdn">[http://technet.microsoft.com/en-us/library/cc262976(v=office.12).aspx MSDN Uninstallfeature : Stsadm Operation]</ref> | <cite>MSDN Uninstallfeature : Stsadm Operation </cite><ref name="msdn">[http://technet.microsoft.com/en-us/library/cc262976(v=office.12).aspx MSDN Uninstallfeature : Stsadm Operation]</ref> |
2014년 9월 16일 (화) 07:49 기준 최신판
기능제거
Operation
uninstallfeature
Syntax
stsadm -o uninstallfeature
-filename <file name>
-name <feature folder>
-id <feature ID>
[-force]
Sample
stsadm -o uninstallfeature -filename "TeamCalList\feature.xml" -force
Parameters
Parameter | Value | Required? | Description |
---|---|---|---|
filename | A valid file path, such as "MyFeature\Feature.xml" | Yes | Path to feature must be a relative path to the 12\Template\Features directory. Can be any standard character that the Windows system supports for a file name. |
name | Name of the feature directory, such as “MyFeature” | Yes | Name of the feature folder located in the 12\Template\Features folder |
id | A valid GUID, such as “21d186e1-7036-4092-a825-0eb6709e9281” | Yes | GUID that identifies the feature definition to remove |
force | <none> | No | Forces the feature to be uninstalled. |
¶filename, name, id 매개변수 중 하나를 선택해서 입력해야 한다.
MSDN Uninstallfeature : Stsadm Operation [1]