SvRooij.ContentPrep.Cmdlet.xml
<?xml version="1.0"?>
<doc> <assembly> <name>SvRooij.ContentPrep.Cmdlet</name> </assembly> <members> <member name="T:SvR.ContentPrep.Cmdlet.NewIntuneWinPackageCommand"> <summary> <para type="synopsis">Create a new IntuneWin package</para> <para type="description">This is a re-implementation of the IntuneWinAppUtil.exe tool, it's not feature complete use at your own risk.</para> <para type="link" uri="https://github.com/svrooij/ContentPrep/blob/main/src/SvR.ContentPrep.Cmdlet/README.md">Documentation</para> </summary> <example> <code> New-IntuneWinPackage -SourcePath "C:\Temp\Source" -SetupFile "C:\Temp\Source\setup.exe" -DestinationPath "C:\Temp\Destination" </code> </example> </member> <member name="P:SvR.ContentPrep.Cmdlet.NewIntuneWinPackageCommand.SourcePath"> <summary> <para type="description">Directory containing all the installation files</para> </summary> </member> <member name="P:SvR.ContentPrep.Cmdlet.NewIntuneWinPackageCommand.SetupFile"> <summary> <para type="description">The main setupfile in the source directory</para> </summary> </member> <member name="P:SvR.ContentPrep.Cmdlet.NewIntuneWinPackageCommand.DestinationPath"> <summary> <para type="description">Destination folder</para> </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.NewIntuneWinPackageCommand.BeginProcessing"> <summary> </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.NewIntuneWinPackageCommand.ProcessRecord"> <summary> </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.NewIntuneWinPackageCommand.EndProcessing"> <summary> </summary> </member> <member name="T:SvR.ContentPrep.Cmdlet.UnlockIntuneWinPackageCommand"> <summary> <para type="synopsis">Decrypt an IntuneWin package</para> <para type="description">Decrypt IntuneWin files, based on this post https://svrooij.io/2023/10/09/decrypting-intunewin-files/</para> <para type="link" uri="https://github.com/svrooij/ContentPrep/blob/main/src/SvR.ContentPrep.Cmdlet/README.md">Documentation</para> </summary> <example> <code> Unlock-IntuneWinPackage -SourceFile "C:\Temp\Source\MyApp.intunewin" -DestinationPath "C:\Temp\Destination" </code> </example> </member> <member name="P:SvR.ContentPrep.Cmdlet.UnlockIntuneWinPackageCommand.SourceFile"> <summary> <para type="description">The location of the .intunewin file</para> </summary> </member> <member name="P:SvR.ContentPrep.Cmdlet.UnlockIntuneWinPackageCommand.DestinationPath"> <summary> <para type="description">Destination folder</para> </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.UnlockIntuneWinPackageCommand.BeginProcessing"> <summary> </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.UnlockIntuneWinPackageCommand.ProcessRecord"> <summary> </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.UnlockIntuneWinPackageCommand.EndProcessing"> <summary> </summary> </member> <member name="T:SvR.ContentPrep.Cmdlet.ThreadAffinitiveSynchronizationContext"> <summary> A synchronisation context that runs all calls scheduled on it (via <see cref="M:System.Threading.SynchronizationContext.Post(System.Threading.SendOrPostCallback,System.Object)"/>) on a single thread. </summary> </member> <member name="F:SvR.ContentPrep.Cmdlet.ThreadAffinitiveSynchronizationContext._workItemQueue"> <summary> A blocking collection (effectively a queue) of work items to execute, consisting of callback delegates and their callback state (if any). </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.ThreadAffinitiveSynchronizationContext.#ctor"> <summary> Create a new thread-affinitive synchronisation context. </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.ThreadAffinitiveSynchronizationContext.Dispose"> <summary> Dispose of resources being used by the synchronisation context. </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.ThreadAffinitiveSynchronizationContext.CheckDisposed"> <summary> Check if the synchronisation context has been disposed. </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.ThreadAffinitiveSynchronizationContext.RunMessagePump"> <summary> Run the message pump for the callback queue on the current thread. </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.ThreadAffinitiveSynchronizationContext.TerminateMessagePump"> <summary> Terminate the message pump once all callbacks have completed. </summary> </member> <member name="M:SvR.ContentPrep.Cmdlet.ThreadAffinitiveSynchronizationContext.Post(System.Threading.SendOrPostCallback,System.Object)"> <summary> Dispatch an asynchronous message to the synchronization context. </summary> <param name="callback"> The <see cref="T:System.Threading.SendOrPostCallback"/> delegate to call in the synchronisation context. </param> <param name="callbackState"> Optional state data passed to the callback. </param> <exception cref="T:System.InvalidOperationException"> The message pump has already been started, and then terminated by calling <see cref="M:SvR.ContentPrep.Cmdlet.ThreadAffinitiveSynchronizationContext.TerminateMessagePump"/>. </exception> </member> <member name="M:SvR.ContentPrep.Cmdlet.ThreadAffinitiveSynchronizationContext.RunSynchronized(System.Func{System.Threading.Tasks.Task})"> <summary> Run an asynchronous operation using the current thread as its synchronisation context. </summary> <param name="asyncOperation"> A <see cref="T:System.Func`1"/> delegate representing the asynchronous operation to run. </param> </member> <member name="M:SvR.ContentPrep.Cmdlet.ThreadAffinitiveSynchronizationContext.RunSynchronized``1(System.Func{System.Threading.Tasks.Task{``0}})"> <summary> Run an asynchronous operation using the current thread as its synchronisation context. </summary> <typeparam name="TResult"> The operation result type. </typeparam> <param name="asyncOperation"> A <see cref="T:System.Func`1"/> delegate representing the asynchronous operation to run. </param> <returns> The operation result. </returns> </member> </members> </doc> |