IWorkspaceResTypeRegistry::DeleteResourceType method (workspaceax.h)

Unregisters a third-party file name extension with the RemoteApp and Desktop Connections runtime.

Syntax

HRESULT DeleteResourceType(
  [in] VARIANT_BOOL fMachineWide,
  [in] BSTR         bstrFileExtension
);

Parameters

[in] fMachineWide

Specifies whether the resource is registered per user or per machine.

VARIANT_TRUE

The resource is registered per machine.

VARIANT_FALSE

The resource is registered per user.

[in] bstrFileExtension

A string that contains the file name extension to unregister. The period must be included in the extension, for example, ".txt".

Return value

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Remarks

This method is called when the plug-in is uninstalled to unregister non-RDP resources.

Requirements

Requirement Value
Minimum supported client Windows 7
Minimum supported server Windows Server 2008 R2
Target Platform Windows
Header workspaceax.h
DLL TSWorkspace.dll

See also

IWorkspaceResTypeRegistry