EN-US/Modrify.Skyrim.dll-Help.xml
<?xml version="1.0" encoding="utf-8"?>
<helpItems schema="maml" xmlns="http://msh"> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <command:details> <command:name>Copy-SkyrimRecordAsDeepCopy</command:name> <command:verb>Copy</command:verb> <command:noun>SkyrimRecordAsDeepCopy</command:noun> <maml:description> <maml:para>Copy a record as a new record into a mod file, preserving the FormKey.</maml:para> </maml:description> </command:details> <maml:description> <maml:para>Copies the selected record into a mod as a new record, preserving the FormKey. Requires a mod object to have been created with Get-SkyrimMod, New-SkyrimMod, or pull from the load order Get-ModLoadOrder/Get-ModPriorityOrder.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> <maml:name>Copy-SkyrimRecordAsDeepCopy</maml:name> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="0" aliases="none"> <maml:name>Record</maml:name> <maml:description> <maml:para>The record to be copied.</maml:para> <maml:para>This can be created by going into a mod group or by using Get-SkyrimMajorRecords.</maml:para> <maml:para>For example, to get NPCs from a mod, use:</maml:para> <maml:para></maml:para> <maml:para>(Get-SkyrimMod 'Skyrim.esm').Npc</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMajorRecordGetter</command:parameterValue> <dev:type> <maml:name>ISkyrimMajorRecordGetter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="DestinationMod, TargetMod"> <maml:name>Mod</maml:name> <maml:description> <maml:para>The mod object. Created with Get-SkyrimMod, New-SkyrimMod, or pulled from the load order Get-ModLoadOrder/Get-ModPriorityOrder.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMod</command:parameterValue> <dev:type> <maml:name>ISkyrimMod</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="DestinationMod, TargetMod"> <maml:name>Mod</maml:name> <maml:description> <maml:para>The mod object. Created with Get-SkyrimMod, New-SkyrimMod, or pulled from the load order Get-ModLoadOrder/Get-ModPriorityOrder.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMod</command:parameterValue> <dev:type> <maml:name>ISkyrimMod</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="0" aliases="none"> <maml:name>Record</maml:name> <maml:description> <maml:para>The record to be copied.</maml:para> <maml:para>This can be created by going into a mod group or by using Get-SkyrimMajorRecords.</maml:para> <maml:para>For example, to get NPCs from a mod, use:</maml:para> <maml:para></maml:para> <maml:para>(Get-SkyrimMod 'Skyrim.esm').Npc</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMajorRecordGetter</command:parameterValue> <dev:type> <maml:name>ISkyrimMajorRecordGetter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name>Mutagen.Bethesda.Skyrim.ISkyrimMajorRecordGetter</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name>Mutagen.Bethesda.Skyrim.SkyrimMajorRecord</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:returnValue> </command:returnValues> <maml:alertSet> <maml:alert> <maml:para></maml:para> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <dev:code>$mod = New-SkyrimMod -ModKey 'TestMod.esp' Get-SkyrimMajorRecord -Mod 'Skyrim.esm' -RecordType Npc | Copy-SkyrimRecordAsDeepCopy -Mod $mod</dev:code> <dev:remarks> <maml:para>This will copy all Npcs from the Skyrim master file into TestMod as new records, preserving the FormKey.</maml:para> </dev:remarks> </command:example> </command:examples> <command:relatedLinks /> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <command:details> <command:name>Copy-SkyrimRecordAsNewRecord</command:name> <command:verb>Copy</command:verb> <command:noun>SkyrimRecordAsNewRecord</command:noun> <maml:description> <maml:para>Copy a record as a new record into a mod file.</maml:para> </maml:description> </command:details> <maml:description> <maml:para>Copies the selected record into a mod as a new record. Requires a mod object to have been created with Get-SkyrimMod, New-SkyrimMod, or pull from the load order Get-ModLoadOrder/Get-ModPriorityOrder.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> <maml:name>Copy-SkyrimRecordAsNewRecord</maml:name> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="0" aliases="none"> <maml:name>Record</maml:name> <maml:description> <maml:para>The record to be copied.</maml:para> <maml:para>This can be created by going into a mod group or by using Get-SkyrimMajorRecords.</maml:para> <maml:para>For example, to get NPCs from a mod, use:</maml:para> <maml:para></maml:para> <maml:para>(Get-SkyrimMod 'Skyrim.esm').Npc</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMajorRecordGetter</command:parameterValue> <dev:type> <maml:name>ISkyrimMajorRecordGetter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="DestinationMod, TargetMod"> <maml:name>Mod</maml:name> <maml:description> <maml:para>The mod object. Created with Get-SkyrimMod, New-SkyrimMod, or pulled from the load order Get-ModLoadOrder/Get-ModPriorityOrder.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMod</command:parameterValue> <dev:type> <maml:name>ISkyrimMod</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="DestinationMod, TargetMod"> <maml:name>Mod</maml:name> <maml:description> <maml:para>The mod object. Created with Get-SkyrimMod, New-SkyrimMod, or pulled from the load order Get-ModLoadOrder/Get-ModPriorityOrder.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMod</command:parameterValue> <dev:type> <maml:name>ISkyrimMod</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="0" aliases="none"> <maml:name>Record</maml:name> <maml:description> <maml:para>The record to be copied.</maml:para> <maml:para>This can be created by going into a mod group or by using Get-SkyrimMajorRecords.</maml:para> <maml:para>For example, to get NPCs from a mod, use:</maml:para> <maml:para></maml:para> <maml:para>(Get-SkyrimMod 'Skyrim.esm').Npc</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMajorRecordGetter</command:parameterValue> <dev:type> <maml:name>ISkyrimMajorRecordGetter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name>Mutagen.Bethesda.Skyrim.ISkyrimMajorRecordGetter</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name>Mutagen.Bethesda.Skyrim.SkyrimMajorRecord</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:returnValue> </command:returnValues> <maml:alertSet> <maml:alert> <maml:para></maml:para> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <dev:code>$mod = New-SkyrimMod -ModKey 'TestMod.esp' Get-SkyrimMajorRecord -Mod 'Skyrim.esm' -RecordType Npc | Copy-SkyrimRecordAsNewRecord -Mod $mod</dev:code> <dev:remarks> <maml:para>This will copy all Npcs from the Skyrim master file into TestMod as new records. This is actually quite fast.</maml:para> </dev:remarks> </command:example> </command:examples> <command:relatedLinks /> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <command:details> <command:name>Copy-SkyrimRecordAsOverride</command:name> <command:verb>Copy</command:verb> <command:noun>SkyrimRecordAsOverride</command:noun> <maml:description> <maml:para>Copy a record as an override into a mod file.</maml:para> </maml:description> </command:details> <maml:description> <maml:para>Copies the selected record into a mod as an override. Requires a mod object to have been created with Get-SkyrimMod, New-SkyrimMod, or pull from the load order Get-ModLoadOrder/Get-ModPriorityOrder.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> <maml:name>Copy-SkyrimRecordAsOverride</maml:name> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="0" aliases="none"> <maml:name>Record</maml:name> <maml:description> <maml:para>The record to be copied.</maml:para> <maml:para>This can be created by going into a mod group or by using Get-SkyrimMajorRecords.</maml:para> <maml:para>For example, to get NPCs from a mod, use:</maml:para> <maml:para></maml:para> <maml:para>(Get-SkyrimMod 'Skyrim.esm').Npc</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMajorRecordGetter</command:parameterValue> <dev:type> <maml:name>ISkyrimMajorRecordGetter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="DestinationMod, TargetMod"> <maml:name>Mod</maml:name> <maml:description> <maml:para>The mod object. Created with Get-SkyrimMod, New-SkyrimMod, or pulled from the load order Get-ModLoadOrder/Get-ModPriorityOrder.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMod</command:parameterValue> <dev:type> <maml:name>ISkyrimMod</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="DestinationMod, TargetMod"> <maml:name>Mod</maml:name> <maml:description> <maml:para>The mod object. Created with Get-SkyrimMod, New-SkyrimMod, or pulled from the load order Get-ModLoadOrder/Get-ModPriorityOrder.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMod</command:parameterValue> <dev:type> <maml:name>ISkyrimMod</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="0" aliases="none"> <maml:name>Record</maml:name> <maml:description> <maml:para>The record to be copied.</maml:para> <maml:para>This can be created by going into a mod group or by using Get-SkyrimMajorRecords.</maml:para> <maml:para>For example, to get NPCs from a mod, use:</maml:para> <maml:para></maml:para> <maml:para>(Get-SkyrimMod 'Skyrim.esm').Npc</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimMajorRecordGetter</command:parameterValue> <dev:type> <maml:name>ISkyrimMajorRecordGetter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name>Mutagen.Bethesda.Skyrim.ISkyrimMajorRecordGetter</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name>Mutagen.Bethesda.Skyrim.SkyrimMajorRecord</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:returnValue> </command:returnValues> <maml:alertSet> <maml:alert> <maml:para></maml:para> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <dev:code>$mod = New-SkyrimMod -ModKey 'TestMod.esp' Get-SkyrimMajorRecord -Mod 'Skyrim.esm' -RecordType Npc | Copy-SkyrimRecordAsOverride -Mod $mod</dev:code> <dev:remarks> <maml:para>This will copy all Npcs from the Skyrim master file into TestMod as an override. This is actually quite fast.</maml:para> </dev:remarks> </command:example> </command:examples> <command:relatedLinks /> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <command:details> <command:name>Get-SkyrimMajorRecords</command:name> <command:verb>Get</command:verb> <command:noun>SkyrimMajorRecords</command:noun> <maml:description> <maml:para>Returns major records from a Skyrim mod.</maml:para> </maml:description> </command:details> <maml:description> <maml:para>Returns major records from the specific Skyrim mod. Either all records or the specified type of records.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> <maml:name>Get-SkyrimMajorRecords</maml:name> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="0" aliases="none"> <maml:name>Mod</maml:name> <maml:description> <maml:para>A SkyrimMod object either created with New-SkyrimMod, Get-SkyrimMod, or pull from the load order with Get-ModLoadOrder/Get-ModPriorityOrder</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimModGetter</command:parameterValue> <dev:type> <maml:name>ISkyrimModGetter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>RecordType</maml:name> <maml:description> <maml:para>The type of record to be returned. Use tab-completion to see the full list.</maml:para> </maml:description> <command:parameterValueGroup> <command:parameterValue required="false" command:variableLength="false">AcousticSpace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ActionRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Activator</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ActorValueInformation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AddonNode</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AlchemicalApparatus</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ammunition</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AnimatedObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">APlacedTrap</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Armor</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ArmorAddon</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ArtObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AssociationType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AStoryManagerNode</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">BodyPartData</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Book</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CameraPath</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CameraShot</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Cell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Class</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Climate</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CollisionLayer</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ColorRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CombatStyle</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ConstructibleObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Container</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Debris</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DefaultObjectManager</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogBranch</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogResponses</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogTopic</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogView</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Door</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DualCastData</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EffectShader</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EncounterZone</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EquipType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Explosion</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Eyes</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Faction</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Flora</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Footstep</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">FootstepSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">FormList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Furniture</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">GameSetting</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Global</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Grass</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Hair</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Hazard</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">HeadPart</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IdleAnimation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IdleMarker</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImageSpace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImageSpaceAdapter</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Impact</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImpactDataSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ingestible</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ingredient</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Key</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Keyword</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Landscape</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LandscapeTexture</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LensFlare</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledNpc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledSpell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Light</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LightingTemplate</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LoadScreen</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Location</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LocationReferenceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MagicEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MaterialObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MaterialType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Message</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MiscItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MoveableStatic</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MovementType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MusicTrack</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MusicType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">NavigationMesh</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">NavigationMeshInfoMap</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Npc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ObjectEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Outfit</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Package</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Perk</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">PlacedNpc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">PlacedObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Projectile</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Quest</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Race</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Region</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Relationship</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ReverbParameters</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Scene</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Scroll</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ShaderParticleGeometry</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Shout</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimMajorRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoulGem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundCategory</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundDescriptor</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundMarker</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundOutputModel</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Spell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Static</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">TalkingActivator</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">TextureSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Tree</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VisualEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VoiceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VolumetricLighting</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Water</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Weapon</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Weather</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">WordOfPower</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Worldspace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlaceableObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IReferenceableObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IExplodeSpawn</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IIdleRelation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IObjectId</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IItemOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IConstructible</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IOutfitTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IBindableEquipment</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IComplexLocation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IDialog</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IOwner</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IRelatable</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IRegionTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IAliasVoiceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILockList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IWorldspaceOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IVoiceTypeOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">INpcOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IWeaponOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISpellOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedTrapTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IHarvestTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IMagicItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IKeywordLinkedReference</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">INpcSpawn</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISpellRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IEmittance</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILocationRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IKnowable</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IEffectRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILinkedReference</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlaced</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedSimple</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedThing</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISound</command:parameterValue> </command:parameterValueGroup> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> <maml:name>String</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> <command:syntaxItem> <maml:name>Get-SkyrimMajorRecords</maml:name> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="0" aliases="none"> <maml:name>ModKey</maml:name> <maml:description> <maml:para>The name of a mod to pull. The cmdlet will look for the mod in the data folder.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ModKey</command:parameterValue> <dev:type> <maml:name>ModKey</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>RecordType</maml:name> <maml:description> <maml:para>The type of record to be returned. Use tab-completion to see the full list.</maml:para> </maml:description> <command:parameterValueGroup> <command:parameterValue required="false" command:variableLength="false">AcousticSpace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ActionRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Activator</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ActorValueInformation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AddonNode</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AlchemicalApparatus</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ammunition</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AnimatedObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">APlacedTrap</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Armor</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ArmorAddon</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ArtObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AssociationType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AStoryManagerNode</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">BodyPartData</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Book</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CameraPath</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CameraShot</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Cell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Class</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Climate</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CollisionLayer</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ColorRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CombatStyle</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ConstructibleObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Container</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Debris</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DefaultObjectManager</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogBranch</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogResponses</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogTopic</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogView</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Door</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DualCastData</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EffectShader</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EncounterZone</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EquipType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Explosion</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Eyes</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Faction</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Flora</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Footstep</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">FootstepSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">FormList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Furniture</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">GameSetting</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Global</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Grass</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Hair</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Hazard</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">HeadPart</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IdleAnimation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IdleMarker</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImageSpace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImageSpaceAdapter</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Impact</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImpactDataSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ingestible</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ingredient</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Key</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Keyword</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Landscape</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LandscapeTexture</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LensFlare</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledNpc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledSpell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Light</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LightingTemplate</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LoadScreen</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Location</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LocationReferenceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MagicEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MaterialObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MaterialType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Message</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MiscItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MoveableStatic</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MovementType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MusicTrack</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MusicType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">NavigationMesh</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">NavigationMeshInfoMap</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Npc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ObjectEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Outfit</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Package</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Perk</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">PlacedNpc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">PlacedObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Projectile</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Quest</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Race</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Region</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Relationship</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ReverbParameters</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Scene</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Scroll</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ShaderParticleGeometry</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Shout</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimMajorRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoulGem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundCategory</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundDescriptor</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundMarker</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundOutputModel</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Spell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Static</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">TalkingActivator</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">TextureSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Tree</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VisualEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VoiceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VolumetricLighting</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Water</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Weapon</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Weather</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">WordOfPower</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Worldspace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlaceableObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IReferenceableObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IExplodeSpawn</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IIdleRelation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IObjectId</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IItemOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IConstructible</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IOutfitTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IBindableEquipment</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IComplexLocation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IDialog</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IOwner</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IRelatable</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IRegionTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IAliasVoiceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILockList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IWorldspaceOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IVoiceTypeOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">INpcOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IWeaponOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISpellOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedTrapTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IHarvestTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IMagicItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IKeywordLinkedReference</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">INpcSpawn</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISpellRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IEmittance</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILocationRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IKnowable</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IEffectRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILinkedReference</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlaced</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedSimple</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedThing</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISound</command:parameterValue> </command:parameterValueGroup> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> <maml:name>String</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="0" aliases="none"> <maml:name>Mod</maml:name> <maml:description> <maml:para>A SkyrimMod object either created with New-SkyrimMod, Get-SkyrimMod, or pull from the load order with Get-ModLoadOrder/Get-ModPriorityOrder</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ISkyrimModGetter</command:parameterValue> <dev:type> <maml:name>ISkyrimModGetter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="0" aliases="none"> <maml:name>ModKey</maml:name> <maml:description> <maml:para>The name of a mod to pull. The cmdlet will look for the mod in the data folder.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ModKey</command:parameterValue> <dev:type> <maml:name>ModKey</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>RecordType</maml:name> <maml:description> <maml:para>The type of record to be returned. Use tab-completion to see the full list.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> <maml:name>String</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name>Mutagen.Bethesda.Skyrim.ISkyrimModGetter</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name>System.Collections.Generic.IEnumerable`1[[Mutagen.Bethesda.Plugins.Records.IMajorRecordGetter, Mutagen.Bethesda.Core, Version=0.42.0.0, Culture=neutral, PublicKeyToken=null]]</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:returnValue> </command:returnValues> <maml:alertSet> <maml:alert> <maml:para></maml:para> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <dev:code>Get-SkyrimMajorRecords -ModKey 'Skyrim.esm' -RecordType Npc</dev:code> <dev:remarks> <maml:para>Gets all NPCs from the Skyrim master file.</maml:para> </dev:remarks> </command:example> </command:examples> <command:relatedLinks /> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <command:details> <command:name>Get-SkyrimMod</command:name> <command:verb>Get</command:verb> <command:noun>SkyrimMod</command:noun> <maml:description> <maml:para>Returns a Skyrim Mod object, optionally readonly.</maml:para> </maml:description> </command:details> <maml:description> <maml:para>Returns a Skyrim Mod object either by path or mod name and optionally read only, which is more performant.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> <maml:name>Get-SkyrimMod</maml:name> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>FileSystem</maml:name> <maml:description> <maml:para>{{ Fill FileSystem Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">IFileSystem</command:parameterValue> <dev:type> <maml:name>IFileSystem</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ImportMask</maml:name> <maml:description> <maml:para>{{ Fill ImportMask Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">GroupMask</command:parameterValue> <dev:type> <maml:name>GroupMask</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ModKey</maml:name> <maml:description> <maml:para>This is the file name of the mod. For example: "Unofficial Skyrim Special Edition Patch.esp".</maml:para> <maml:para>If this parameter is used, the mod will be searched for in the data folder.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ModKey</command:parameterValue> <dev:type> <maml:name>ModKey</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Parallel</maml:name> <maml:description> <maml:para>{{ Fill Parallel Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue> <dev:type> <maml:name>Boolean</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Release</maml:name> <maml:description> <maml:para>Only required if you haven't already set your game environment with Set-ModrifyGame.</maml:para> </maml:description> <command:parameterValueGroup> <command:parameterValue required="false" command:variableLength="false">SkyrimLE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimSE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimVR</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EnderalLE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EnderalSE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimSEGog</command:parameterValue> </command:parameterValueGroup> <command:parameterValue required="true" variableLength="false">SkyrimRelease</command:parameterValue> <dev:type> <maml:name>SkyrimRelease</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>StringsParam</maml:name> <maml:description> <maml:para>{{ Fill StringsParam Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">StringsReadParameters</command:parameterValue> <dev:type> <maml:name>StringsReadParameters</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> <command:syntaxItem> <maml:name>Get-SkyrimMod</maml:name> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>FileSystem</maml:name> <maml:description> <maml:para>{{ Fill FileSystem Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">IFileSystem</command:parameterValue> <dev:type> <maml:name>IFileSystem</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ImportMask</maml:name> <maml:description> <maml:para>{{ Fill ImportMask Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">GroupMask</command:parameterValue> <dev:type> <maml:name>GroupMask</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ModKey</maml:name> <maml:description> <maml:para>This is the file name of the mod. For example: "Unofficial Skyrim Special Edition Patch.esp".</maml:para> <maml:para>If this parameter is used, the mod will be searched for in the data folder.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ModKey</command:parameterValue> <dev:type> <maml:name>ModKey</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Parallel</maml:name> <maml:description> <maml:para>{{ Fill Parallel Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue> <dev:type> <maml:name>Boolean</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ReadOnly</maml:name> <maml:description> <maml:para>Optionally return the mod as readonly, which is much more performant. Useful for reporting purposes.</maml:para> </maml:description> <dev:type> <maml:name>SwitchParameter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>False</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Release</maml:name> <maml:description> <maml:para>Only required if you haven't already set your game environment with Set-ModrifyGame.</maml:para> </maml:description> <command:parameterValueGroup> <command:parameterValue required="false" command:variableLength="false">SkyrimLE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimSE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimVR</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EnderalLE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EnderalSE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimSEGog</command:parameterValue> </command:parameterValueGroup> <command:parameterValue required="true" variableLength="false">SkyrimRelease</command:parameterValue> <dev:type> <maml:name>SkyrimRelease</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>StringsParam</maml:name> <maml:description> <maml:para>{{ Fill StringsParam Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">StringsReadParameters</command:parameterValue> <dev:type> <maml:name>StringsReadParameters</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> <command:syntaxItem> <maml:name>Get-SkyrimMod</maml:name> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>FileSystem</maml:name> <maml:description> <maml:para>{{ Fill FileSystem Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">IFileSystem</command:parameterValue> <dev:type> <maml:name>IFileSystem</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ImportMask</maml:name> <maml:description> <maml:para>{{ Fill ImportMask Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">GroupMask</command:parameterValue> <dev:type> <maml:name>GroupMask</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Parallel</maml:name> <maml:description> <maml:para>{{ Fill Parallel Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue> <dev:type> <maml:name>Boolean</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Path</maml:name> <maml:description> <maml:para>The fully qualified path to the mod file.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ModPath</command:parameterValue> <dev:type> <maml:name>ModPath</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ReadOnly</maml:name> <maml:description> <maml:para>Optionally return the mod as readonly, which is much more performant. Useful for reporting purposes.</maml:para> </maml:description> <dev:type> <maml:name>SwitchParameter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>False</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Release</maml:name> <maml:description> <maml:para>Only required if you haven't already set your game environment with Set-ModrifyGame.</maml:para> </maml:description> <command:parameterValueGroup> <command:parameterValue required="false" command:variableLength="false">SkyrimLE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimSE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimVR</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EnderalLE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EnderalSE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimSEGog</command:parameterValue> </command:parameterValueGroup> <command:parameterValue required="true" variableLength="false">SkyrimRelease</command:parameterValue> <dev:type> <maml:name>SkyrimRelease</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>StringsParam</maml:name> <maml:description> <maml:para>{{ Fill StringsParam Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">StringsReadParameters</command:parameterValue> <dev:type> <maml:name>StringsReadParameters</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> <command:syntaxItem> <maml:name>Get-SkyrimMod</maml:name> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>FileSystem</maml:name> <maml:description> <maml:para>{{ Fill FileSystem Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">IFileSystem</command:parameterValue> <dev:type> <maml:name>IFileSystem</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ImportMask</maml:name> <maml:description> <maml:para>{{ Fill ImportMask Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">GroupMask</command:parameterValue> <dev:type> <maml:name>GroupMask</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Parallel</maml:name> <maml:description> <maml:para>{{ Fill Parallel Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue> <dev:type> <maml:name>Boolean</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Path</maml:name> <maml:description> <maml:para>The fully qualified path to the mod file.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ModPath</command:parameterValue> <dev:type> <maml:name>ModPath</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Release</maml:name> <maml:description> <maml:para>Only required if you haven't already set your game environment with Set-ModrifyGame.</maml:para> </maml:description> <command:parameterValueGroup> <command:parameterValue required="false" command:variableLength="false">SkyrimLE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimSE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimVR</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EnderalLE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EnderalSE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimSEGog</command:parameterValue> </command:parameterValueGroup> <command:parameterValue required="true" variableLength="false">SkyrimRelease</command:parameterValue> <dev:type> <maml:name>SkyrimRelease</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>StringsParam</maml:name> <maml:description> <maml:para>{{ Fill StringsParam Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">StringsReadParameters</command:parameterValue> <dev:type> <maml:name>StringsReadParameters</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>FileSystem</maml:name> <maml:description> <maml:para>{{ Fill FileSystem Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">IFileSystem</command:parameterValue> <dev:type> <maml:name>IFileSystem</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ImportMask</maml:name> <maml:description> <maml:para>{{ Fill ImportMask Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">GroupMask</command:parameterValue> <dev:type> <maml:name>GroupMask</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ModKey</maml:name> <maml:description> <maml:para>This is the file name of the mod. For example: "Unofficial Skyrim Special Edition Patch.esp".</maml:para> <maml:para>If this parameter is used, the mod will be searched for in the data folder.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ModKey</command:parameterValue> <dev:type> <maml:name>ModKey</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Parallel</maml:name> <maml:description> <maml:para>{{ Fill Parallel Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue> <dev:type> <maml:name>Boolean</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Path</maml:name> <maml:description> <maml:para>The fully qualified path to the mod file.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ModPath</command:parameterValue> <dev:type> <maml:name>ModPath</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ReadOnly</maml:name> <maml:description> <maml:para>Optionally return the mod as readonly, which is much more performant. Useful for reporting purposes.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> <maml:name>SwitchParameter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>False</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Release</maml:name> <maml:description> <maml:para>Only required if you haven't already set your game environment with Set-ModrifyGame.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">SkyrimRelease</command:parameterValue> <dev:type> <maml:name>SkyrimRelease</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>StringsParam</maml:name> <maml:description> <maml:para>{{ Fill StringsParam Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">StringsReadParameters</command:parameterValue> <dev:type> <maml:name>StringsReadParameters</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name>None</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name>Mutagen.Bethesda.Skyrim.ISkyrimModDisposableGetter</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:returnValue> <command:returnValue> <dev:type> <maml:name>Mutagen.Bethesda.Skyrim.ISkyrimMod</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:returnValue> </command:returnValues> <maml:alertSet> <maml:alert> <maml:para></maml:para> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <dev:code>Get-SkyrimMod -ModKey HearthFires.esm -ReadOnly</dev:code> <dev:remarks> <maml:para>Returns a Skyrim Mod object that will contain all of the data in HearthFires.esm, specifically read only.</maml:para> </dev:remarks> </command:example> </command:examples> <command:relatedLinks /> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <command:details> <command:name>Get-SkyrimWinningContextOverrides</command:name> <command:verb>Get</command:verb> <command:noun>SkyrimWinningContextOverrides</command:noun> <maml:description> <maml:para>Returns the winning overrides with additional context.</maml:para> </maml:description> </command:details> <maml:description> <maml:para>Returns an array of winning overrides contexts for the specified type for your entire load order. This is actually quite fast.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> <maml:name>Get-SkyrimWinningContextOverrides</maml:name> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>IncludeDeletedRecords</maml:name> <maml:description> <maml:para>If true, includes deleted records.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue> <dev:type> <maml:name>Boolean</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>RecordType</maml:name> <maml:description> <maml:para>The type of record to search for. Use tab completion to see the full list.</maml:para> </maml:description> <command:parameterValueGroup> <command:parameterValue required="false" command:variableLength="false">AcousticSpace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ActionRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Activator</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ActorValueInformation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AddonNode</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AlchemicalApparatus</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ammunition</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AnimatedObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">APlacedTrap</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Armor</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ArmorAddon</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ArtObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AssociationType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AStoryManagerNode</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">BodyPartData</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Book</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CameraPath</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CameraShot</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Cell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Class</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Climate</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CollisionLayer</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ColorRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CombatStyle</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ConstructibleObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Container</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Debris</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DefaultObjectManager</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogBranch</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogResponses</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogTopic</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogView</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Door</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DualCastData</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EffectShader</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EncounterZone</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EquipType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Explosion</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Eyes</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Faction</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Flora</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Footstep</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">FootstepSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">FormList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Furniture</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">GameSetting</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Global</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Grass</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Hair</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Hazard</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">HeadPart</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IdleAnimation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IdleMarker</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImageSpace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImageSpaceAdapter</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Impact</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImpactDataSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ingestible</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ingredient</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Key</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Keyword</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Landscape</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LandscapeTexture</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LensFlare</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledNpc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledSpell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Light</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LightingTemplate</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LoadScreen</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Location</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LocationReferenceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MagicEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MaterialObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MaterialType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Message</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MiscItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MoveableStatic</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MovementType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MusicTrack</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MusicType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">NavigationMesh</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">NavigationMeshInfoMap</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Npc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ObjectEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Outfit</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Package</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Perk</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">PlacedNpc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">PlacedObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Projectile</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Quest</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Race</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Region</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Relationship</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ReverbParameters</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Scene</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Scroll</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ShaderParticleGeometry</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Shout</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimMajorRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoulGem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundCategory</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundDescriptor</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundMarker</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundOutputModel</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Spell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Static</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">TalkingActivator</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">TextureSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Tree</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VisualEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VoiceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VolumetricLighting</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Water</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Weapon</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Weather</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">WordOfPower</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Worldspace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlaceableObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IReferenceableObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IExplodeSpawn</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IIdleRelation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IObjectId</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IItemOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IConstructible</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IOutfitTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IBindableEquipment</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IComplexLocation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IDialog</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IOwner</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IRelatable</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IRegionTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IAliasVoiceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILockList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IWorldspaceOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IVoiceTypeOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">INpcOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IWeaponOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISpellOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedTrapTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IHarvestTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IMagicItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IKeywordLinkedReference</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">INpcSpawn</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISpellRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IEmittance</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILocationRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IKnowable</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IEffectRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILinkedReference</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlaced</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedSimple</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedThing</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISound</command:parameterValue> </command:parameterValueGroup> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> <maml:name>String</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>IncludeDeletedRecords</maml:name> <maml:description> <maml:para>If true, includes deleted records.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue> <dev:type> <maml:name>Boolean</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>RecordType</maml:name> <maml:description> <maml:para>The type of record to search for. Use tab completion to see the full list.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> <maml:name>String</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name>None</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name>System.Collections.Generic.IEnumerable`1[[Mutagen.Bethesda.Plugins.Records.IMajorRecordGetter, Mutagen.Bethesda.Core, Version=0.42.0.0, Culture=neutral, PublicKeyToken=null]]</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:returnValue> </command:returnValues> <maml:alertSet> <maml:alert> <maml:para></maml:para> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <dev:code>Get-SkyrimWinningContextOverrides -RecordType Npc</dev:code> <dev:remarks> <maml:para>Returns the Winning Context Override for all Npcs present in your load order.</maml:para> </dev:remarks> </command:example> </command:examples> <command:relatedLinks /> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <command:details> <command:name>Get-SkyrimWinningOverrides</command:name> <command:verb>Get</command:verb> <command:noun>SkyrimWinningOverrides</command:noun> <maml:description> <maml:para>Returns winning overrides for your entire load order.</maml:para> </maml:description> </command:details> <maml:description> <maml:para>Returns an array of winning overrides of the specified type for your entire load order. This is actually a very fast cmdlet.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> <maml:name>Get-SkyrimWinningOverrides</maml:name> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>IncludeDeletedRecords</maml:name> <maml:description> <maml:para>If true, returns deleted records as well.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue> <dev:type> <maml:name>Boolean</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>RecordType</maml:name> <maml:description> <maml:para>The record type. Use tab completion to identify possibly values.</maml:para> </maml:description> <command:parameterValueGroup> <command:parameterValue required="false" command:variableLength="false">AcousticSpace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ActionRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Activator</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ActorValueInformation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AddonNode</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AlchemicalApparatus</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ammunition</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AnimatedObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">APlacedTrap</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Armor</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ArmorAddon</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ArtObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AssociationType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">AStoryManagerNode</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">BodyPartData</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Book</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CameraPath</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CameraShot</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Cell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Class</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Climate</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CollisionLayer</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ColorRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">CombatStyle</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ConstructibleObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Container</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Debris</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DefaultObjectManager</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogBranch</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogResponses</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogTopic</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DialogView</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Door</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">DualCastData</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EffectShader</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EncounterZone</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EquipType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Explosion</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Eyes</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Faction</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Flora</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Footstep</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">FootstepSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">FormList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Furniture</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">GameSetting</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Global</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Grass</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Hair</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Hazard</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">HeadPart</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IdleAnimation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IdleMarker</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImageSpace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImageSpaceAdapter</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Impact</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ImpactDataSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ingestible</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Ingredient</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Key</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Keyword</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Landscape</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LandscapeTexture</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LensFlare</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledNpc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LeveledSpell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Light</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LightingTemplate</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LoadScreen</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Location</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">LocationReferenceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MagicEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MaterialObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MaterialType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Message</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MiscItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MoveableStatic</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MovementType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MusicTrack</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">MusicType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">NavigationMesh</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">NavigationMeshInfoMap</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Npc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ObjectEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Outfit</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Package</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Perk</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">PlacedNpc</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">PlacedObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Projectile</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Quest</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Race</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Region</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Relationship</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ReverbParameters</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Scene</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Scroll</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ShaderParticleGeometry</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Shout</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimMajorRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoulGem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundCategory</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundDescriptor</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundMarker</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SoundOutputModel</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Spell</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Static</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">TalkingActivator</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">TextureSet</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Tree</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VisualEffect</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VoiceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">VolumetricLighting</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Water</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Weapon</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Weather</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">WordOfPower</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">Worldspace</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlaceableObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IReferenceableObject</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IExplodeSpawn</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IIdleRelation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IObjectId</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IItemOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IConstructible</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IOutfitTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IBindableEquipment</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IComplexLocation</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IDialog</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IOwner</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IRelatable</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IRegionTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IAliasVoiceType</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILockList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IWorldspaceOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IVoiceTypeOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">INpcOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IWeaponOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISpellOrList</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedTrapTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IHarvestTarget</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IMagicItem</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IKeywordLinkedReference</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">INpcSpawn</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISpellRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IEmittance</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILocationRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IKnowable</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IEffectRecord</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ILinkedReference</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlaced</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedSimple</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">IPlacedThing</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">ISound</command:parameterValue> </command:parameterValueGroup> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> <maml:name>String</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>IncludeDeletedRecords</maml:name> <maml:description> <maml:para>If true, returns deleted records as well.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">Boolean</command:parameterValue> <dev:type> <maml:name>Boolean</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>RecordType</maml:name> <maml:description> <maml:para>The record type. Use tab completion to identify possibly values.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">String</command:parameterValue> <dev:type> <maml:name>String</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name>None</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name>System.Collections.Generic.IEnumerable`1[[Mutagen.Bethesda.Plugins.Records.IMajorRecordGetter, Mutagen.Bethesda.Core, Version=0.42.0.0, Culture=neutral, PublicKeyToken=null]]</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:returnValue> </command:returnValues> <maml:alertSet> <maml:alert> <maml:para></maml:para> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <dev:code>Get-SkyrimWinningOverrides -RecordType Npc</dev:code> <dev:remarks> <maml:para>Returns the winning override for all NPCs.</maml:para> </dev:remarks> </command:example> </command:examples> <command:relatedLinks /> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <command:details> <command:name>New-SkyrimMod</command:name> <command:verb>New</command:verb> <command:noun>SkyrimMod</command:noun> <maml:description> <maml:para>Creates a new Skyrim mod in memory.</maml:para> </maml:description> </command:details> <maml:description> <maml:para>Returns a new Skyrim mod in memory. Use Get-SkyrimMod to retrieve existing mods from disk.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> <maml:name>New-SkyrimMod</maml:name> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ModKey</maml:name> <maml:description> <maml:para>The name of the mod.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ModKey</command:parameterValue> <dev:type> <maml:name>ModKey</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Release</maml:name> <maml:description> <maml:para>If you haven't already set your game environment with Set-ModrifyGame, specify the Skyrim version with this parameter.</maml:para> <maml:para>If you have set your game environment already, this parameter is not needed.</maml:para> </maml:description> <command:parameterValueGroup> <command:parameterValue required="false" command:variableLength="false">SkyrimLE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimSE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimVR</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EnderalLE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">EnderalSE</command:parameterValue> <command:parameterValue required="false" command:variableLength="false">SkyrimSEGog</command:parameterValue> </command:parameterValueGroup> <command:parameterValue required="true" variableLength="false">SkyrimRelease</command:parameterValue> <dev:type> <maml:name>SkyrimRelease</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ModKey</maml:name> <maml:description> <maml:para>The name of the mod.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ModKey</command:parameterValue> <dev:type> <maml:name>ModKey</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Release</maml:name> <maml:description> <maml:para>If you haven't already set your game environment with Set-ModrifyGame, specify the Skyrim version with this parameter.</maml:para> <maml:para>If you have set your game environment already, this parameter is not needed.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">SkyrimRelease</command:parameterValue> <dev:type> <maml:name>SkyrimRelease</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name>None</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name>Mutagen.Bethesda.Skyrim.ISkyrimMod</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:returnValue> </command:returnValues> <maml:alertSet> <maml:alert> <maml:para></maml:para> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <dev:code>New-SkyrimMod -Modkey 'TestMod.esp'</dev:code> <dev:remarks> <maml:para>Creates a new mod in memory called 'TestMod.esp'</maml:para> </dev:remarks> </command:example> </command:examples> <command:relatedLinks /> </command:command> <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp"> <command:details> <command:name>Write-SkyrimMod</command:name> <command:verb>Write</command:verb> <command:noun>SkyrimMod</command:noun> <maml:description> <maml:para>Writes a SkyrimMod object to disk.</maml:para> </maml:description> </command:details> <maml:description> <maml:para>Writes the data stored in a SkyrimMod object to disk.</maml:para> </maml:description> <command:syntax> <command:syntaxItem> <maml:name>Write-SkyrimMod</maml:name> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>BinaryWriteParameters</maml:name> <maml:description> <maml:para>The [Mutagen.Bethesda.Plugins.Binary.Parameters.BinaryWriteParameters] object to pass to the mod writer.</maml:para> <maml:para>In the future there will be a function to create this object type. For now, use:</maml:para> <maml:para></maml:para> <maml:para>$bwp = [Mutagen.Bethesda.Plugins.Binary.Parameters.BinaryWriteParameters]::new()</maml:para> <maml:para># If the modkey to write to is different then the modkey provided on mod creation, ignore that error</maml:para> <maml:para>$bwp.ModKey = [Mutagen.Bethesda.Plugins.Binary.Parameters.ModKeyOption]::NoCheck</maml:para> <maml:para>Write-SkyrimMod -Mod $mod -Path "$((Get-ModrifyGame).DataFolderPath)\TestMod.esp"</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">BinaryWriteParameters</command:parameterValue> <dev:type> <maml:name>BinaryWriteParameters</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>FileSystem</maml:name> <maml:description> <maml:para>{{ Fill FileSystem Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">IFileSystem</command:parameterValue> <dev:type> <maml:name>IFileSystem</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="none"> <maml:name>Mod</maml:name> <maml:description> <maml:para>The mod object to write. Can be created from scratch with New-SkyrimMod or retrieved from disk with Get-SkyrimMod.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">IMod</command:parameterValue> <dev:type> <maml:name>IMod</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ParallelWriteParameters</maml:name> <maml:description> <maml:para>TBD</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ParallelWriteParameters</command:parameterValue> <dev:type> <maml:name>ParallelWriteParameters</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Path</maml:name> <maml:description> <maml:para>The fully qualified file path to write to.</maml:para> <maml:para>The data folder can be retrieved with:</maml:para> <maml:para></maml:para> <maml:para>(Get-ModrifyGame).DataFolderPath</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">FileInfo</command:parameterValue> <dev:type> <maml:name>FileInfo</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>SkipCompressionFix</maml:name> <maml:description> <maml:para>Currently Mutagen does not support writting mods that have the compression flag enabled so Write-SkyrimMod will cycle through each record and ensure that flag is disabled.</maml:para> <maml:para>Use this flag to disable that functionality.</maml:para> </maml:description> <dev:type> <maml:name>SwitchParameter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>False</dev:defaultValue> </command:parameter> </command:syntaxItem> </command:syntax> <command:parameters> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>BinaryWriteParameters</maml:name> <maml:description> <maml:para>The [Mutagen.Bethesda.Plugins.Binary.Parameters.BinaryWriteParameters] object to pass to the mod writer.</maml:para> <maml:para>In the future there will be a function to create this object type. For now, use:</maml:para> <maml:para></maml:para> <maml:para>$bwp = [Mutagen.Bethesda.Plugins.Binary.Parameters.BinaryWriteParameters]::new()</maml:para> <maml:para># If the modkey to write to is different then the modkey provided on mod creation, ignore that error</maml:para> <maml:para>$bwp.ModKey = [Mutagen.Bethesda.Plugins.Binary.Parameters.ModKeyOption]::NoCheck</maml:para> <maml:para>Write-SkyrimMod -Mod $mod -Path "$((Get-ModrifyGame).DataFolderPath)\TestMod.esp"</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">BinaryWriteParameters</command:parameterValue> <dev:type> <maml:name>BinaryWriteParameters</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>FileSystem</maml:name> <maml:description> <maml:para>{{ Fill FileSystem Description }}</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">IFileSystem</command:parameterValue> <dev:type> <maml:name>IFileSystem</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="named" aliases="none"> <maml:name>Mod</maml:name> <maml:description> <maml:para>The mod object to write. Can be created from scratch with New-SkyrimMod or retrieved from disk with Get-SkyrimMod.</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">IMod</command:parameterValue> <dev:type> <maml:name>IMod</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>ParallelWriteParameters</maml:name> <maml:description> <maml:para>TBD</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">ParallelWriteParameters</command:parameterValue> <dev:type> <maml:name>ParallelWriteParameters</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>Path</maml:name> <maml:description> <maml:para>The fully qualified file path to write to.</maml:para> <maml:para>The data folder can be retrieved with:</maml:para> <maml:para></maml:para> <maml:para>(Get-ModrifyGame).DataFolderPath</maml:para> </maml:description> <command:parameterValue required="true" variableLength="false">FileInfo</command:parameterValue> <dev:type> <maml:name>FileInfo</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>None</dev:defaultValue> </command:parameter> <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none"> <maml:name>SkipCompressionFix</maml:name> <maml:description> <maml:para>Currently Mutagen does not support writting mods that have the compression flag enabled so Write-SkyrimMod will cycle through each record and ensure that flag is disabled.</maml:para> <maml:para>Use this flag to disable that functionality.</maml:para> </maml:description> <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue> <dev:type> <maml:name>SwitchParameter</maml:name> <maml:uri /> </dev:type> <dev:defaultValue>False</dev:defaultValue> </command:parameter> </command:parameters> <command:inputTypes> <command:inputType> <dev:type> <maml:name>Mutagen.Bethesda.Plugins.Records.IMod</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:inputType> </command:inputTypes> <command:returnValues> <command:returnValue> <dev:type> <maml:name>System.Object</maml:name> </dev:type> <maml:description> <maml:para></maml:para> </maml:description> </command:returnValue> </command:returnValues> <maml:alertSet> <maml:alert> <maml:para></maml:para> </maml:alert> </maml:alertSet> <command:examples> <command:example> <maml:title>-------------------------- Example 1 --------------------------</maml:title> <dev:code># Create a new mod $mod = New-SkyrimMod -ModKey 'TestMod.esp' # find the nord race $nordRace = Get-SkyrimMajorRecords -ModKey Skyrim.esm -RecordType Race | Where-Object {$_.EditorID -eq 'NordRace'} # Get all nord NPCs $nordNpcs = Get-SkyrimMajorRecords -ModKey Skyrim.esm -RecordType Npc | Where-Object {$_.Race -eq $nordRace} # copy all nord NPCs as overrides into the new mod $overrides = $nordNpcs | Copy-SkyrimRecordAsOverride -Mod $mod # do something to the nords $overrides | %{ ... } # Write the new data to a file in the data directory Write-SkyrimMod -Mod $mod -Path "$((Get-ModrifyGame).DataFolderPath)\TestMod.esp"</dev:code> <dev:remarks> <maml:para>This example gets all Nord NPCs using Get-SkyrimMajorRecords and filtering with Where-Object.</maml:para> <maml:para>This will only return Races and NPCs from the Skyrim.esm master file. If you wish to get the winning overrides from your entire load order, use: Get-SkyrimWinningOverrides instead.</maml:para> </dev:remarks> </command:example> </command:examples> <command:relatedLinks /> </command:command> </helpItems> |