This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已动态机器翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
This content has been machine translated dynamically.
This content has been machine translated dynamically.
This content has been machine translated dynamically.
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.
Este artigo foi traduzido automaticamente.
这篇文章已经过机器翻译.放弃
Translation failed!
是正レポートビューへのリンクの作成
このトピックでは、レポートに含まれる各アプリケーションの名前がアプリケーションの修復レポートビューへのリンクとなるように Forward Path レポートを構成する方法について説明します。1 つのレポートの是正レポートビュー、または任意の標準レポートの組み合わせへのリンクを作成できます (マージされた是正レポートビューへのリンク)。
以下は、リンクとして表示されるアプリケーション名を示す Forward Path レポートのスニペットです。
Forward Pathシナリオでリンクを指定するには、Output オブジェクト (ForwardPathReportOutput オブジェクトとも呼ばれます) の RemediationModules プロパティを使用します。1 つのレポートまたはマージされた是正レポートビューの是正レポートビューへのリンクを作成できます。たとえば、Windows 7 の修復レポートビューへのリンクを次のように作成できます。
Dim myForwardpathresult As New Output()
' ...
myForwardpathresult.RemediationModules.Add("Win7Module")
マージされたWindows 7およびApp-V修復レポートビューへのリンクを作成するには、次のように別の行を追加します。
myForwardpathresult.RemediationModules.Add("VirtualisationRuleModule")
デフォルトでは、リンクをクリックすると、修復の問題ビューが表示されます。修復アクションビューに移動する場合は、次の行を追加します。
myForwardpathresult.RemediationView = RemediationView.Actions
メモ: RemediationModules プロパティは,標準の.NET List クラスのオブジェクトです(ドキュメントについては, MSDN ライブラリを参照してください)。
次の表に、さまざまなAppDNAレポートを定義するIDを示します。リンクが正しく機能するには、レポートのライセンスを取得し、そのレポートのアプリケーションを分析する必要があります。
このレポートを指定するには、次の手順に従います。 | この ID を使用: |
---|---|
セキュリティ | SecurityModule |
Windows 10 | Win10Module |
Windows 8/8.1 | Win8Module |
Windows 7 | Win7Module |
Windows Server 2016 | Win2016Module |
Windows Server 2012/2012 R2 | Win2012Module |
Windows Server 2008 R2 | Win2008R2Module |
XenAppのホスト型 | XenAppRuleModule |
App-V | VirtualisationRuleModule |
AppDisks | AppDisksModule |
Internet Explorer (IE) | IEModule |
Firefox | FFModule |
Secure Web | WorxWebModule |
カスタムレポート修復ビューへのリンク
1 つのカスタムレポートの是正レポートビューにリンクできます。これを行うには、カスタムレポートの識別子を知る必要があります。通常、これはカスタムレポートの名前と同じです (スペースは削除されます)。たとえば、既定の名前の「My New Custom Report」を使用してカスタムレポートを作成する場合、その識別子は通常 MyNewCustomReport になります。ただし、例外があります。たとえば、次のようになります。
- カスタムレポートの名前を変更しても、識別子は変更されません。
- 名前が変更された前のレポートと同じ名前で別のカスタムレポートを作成する場合、識別子は前のレポートと同じですが、_1 が付加されます。
注:マージされたカスタムレポート是正レポートビューへのリンクはサポートされていません。
完全なシナリオ
で作成したForward Pathの例、改善レポートビューへのリンクを作成するために拡張されたシナリオの例を次に示します。
Public Function ForwardPath(ByVal currentApplication _
As Application) As Output
Dim myForwardpathresult As New Output()
If (currentApplication.Modules.Windows7.RAG = RAG.Green) Then
myForwardpathresult.Outcome = "OK for Windows 7"
Else
If (currentApplication.Modules.Windows7.RAG = RAG.Amber) Then
myForwardpathresult.Outcome = "Remediation required"
Else
myForwardpathresult.Outcome = "Redevelopment required"
End If
End If
myForwardpathresult.Cost = 100
myForwardpathresult.RAG = _
currentApplication.Modules.Windows7.RAG
' Create links to the merged Windows 7 and App-V
' remediation report views.
myForwardpathresult.RemediationModules.Add("Win7Module")
myForwardpathresult.RemediationModules.Add("VirtualisationRuleModule")
' Specify that the link goes to the action view.
myForwardpathresult.RemediationView = _
RemediationView.Actions
ForwardPath = myForwardpathresult
End Function
共有
共有
This Preview product documentation is Citrix Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Citrix Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Citrix product purchase decisions.
If you do not agree, select Do Not Agree to exit.