How to export Defects from HP QC to Excel using windows batch script? - hp-quality-center

Can someone tell me how to export Defects from HP QC to an Excel sheet using batch script?
I need an automation script to export HP QC defects to Excel using batch script or vb script.
Thanks in advance.

Please check the QC addin directly from HPE main site or the business view tool for excel.
Two useful Add-in for Excel in order to get fast data from HP QC server are available under tools:
1) Access the Tools section on the server at https://QC-server_address/qcbin/
2) Choose the "more HP ALM add-ins"
3) Navigate to the Add-in and to add-in for Microsoft App as showed below.
4) Follow the steps showed by HP support in order to install the "Microsoft Excel add-in" or "the "Business View Microsoft Excel" 😄
If you want to create some script then it will take a bit more time...but this is possible by the usage of QC REST API for instance. You can find a lot of already replied questions on SO.
Have a nice day! Ciao ciao

Related

is 'Extending U-SQL scripts with R code in Visual Studio' available?

Can I use R scripts in USQL while working on local microsoft studio? All documents that i can find are related to Azure execution only.-
https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/data-lake-analytics/data-lake-analytics-u-sql-r-extensions.md
Till last year, this was not done. Any Idea if we can use R scripts in Visual Studio( USQL project) now ?
https://social.msdn.microsoft.com/Forums/en-US/938d423f-b163-4273-87af-cc0af7b301ec/r-in-adla-script?forum=AzureDataLake
Yes, please see Enabling U-SQL Advanced Analytics for Local Execution.

How to Export a Report in Microsoft Power BI with Asp.net MVC 5

I am developing a system in Asp.net MVC 5. The system reports are in Microsoft Power BI. The user needs to export the report to an Excel file.
Does anybody know how to apply or develop a button or a Visual in Microsoft Power Bi reports to export the particular report to an Excel file when it is published?
The Export icon is available when the report is in In Power BI account / Dashboard as below.
But when the report is published and when the user views the report through MVC application, there is no way to export data to a .xlsx file or .csv file(as shown below).Export and Pin icons are missing. I need a method or any special widget which can do that work. Thank you in advance.
There are currently two options to export to Excel
Export Data
Analyze in Excel
However, neither of these will allow you to export an entire report including visuals. This is currently one of the more irritating limitations of Power BI.
There are a number of ideas on the Power BI forums that are related to this. Please add your vote and comments to the ones that are most relevant to you.

Report, Ad hoc report and Dashboard in pentaho

I'm currently working on a project to implement a BI solution. I chose Pentaho
There are many tools to create:
reports (report designer)
adhoc reports (WAHQR ou PIR)
Dashboard (dashboard designer or CDE)
Analyze (analyzer or saiku)
(in big the one I'll use)
The question is, which tool is used by the final user (non technic) and which by the technician/developer?
And which of these tools create report/dashboard that can be executed repeatedly with a scheduler / just one time on demand?
thks for your help
Developer : All
User : SAIKU
Reports generated by Pentaho Report Dssigner could be excuted by scheduler. This is also able to be executed by scheduler using kitchen using Pentaho Reporting Output step.

Run a Virus Scan While Uploading files in ASP.NET

I have developed a web based application in ASP.NET and C# where users have the facility to upload files on the server through this application I want the application to Scan the uploaded files for viruses before saving on the server. Same like when we attach files with our email in Yahoo. Please guide me how I can achieve this functionality Any API which can be integrated in ASP.NET application or any other way you can suggest. We can purchase the licensed version of a product which can achieve this. I have googled but did not find specific results.
Thanks in advance!
First of all the file must be saved onto the server before you can scan it. If you notice Yahoo will upload the file first - but not allow the attachment to be sent until scanned.
Then you can use an antivirus with a command line interface or some other kind of API. Both of these can be called via C# and should provide the functionality you require. Parhaps write a wrapper class that takes a file and returns true or false depending on whether a virus was detected.
Other applications that provide you with a command line interface:
Microsoft Security Essentials
clamAv
I believe MS AV provides better results.
Just purchase antivirus software that has a command-line interface (several popular packages include this). Once the file has been uploaded, run the scan.
I would think, in order to upload and scan at the same time, you might need to implement your own antivirus software as I'm not familiar with any package that would provide that sort of interface.
I run a shareware site. It doesn't work as you described, but I download each file to my local computer and run a scan on them. You would be doing something similar.

asp.net(c#) Create Excel Worksheet, do i need Excel installed on the server?

I have created an application that uses Microsoft.Office.Interop.Excel, in my local and testing environments everything worked fine, but the app does not work in the production environment.
Turns out I have Office installed locally, as does the Test server, however, the production server does not have Excel installed.
I really can't go back and change my code, however, I would really not like to have to install Excel on the production server.
Do I have any other options other than installing Office Excel on the production server to get the application working?
Thanks,
Appreciate your assistance.
Steven
Office Interop does require that Office be installed on the server.
In the more general case, you do not need Excel to create worksheets, and you should avoid any solution that requires it for web use. That includes office interop: it doesn't scale in a web environment.
See this question for more options:
Generating an Excel file in ASP.NET
Did you try to find some free cost excel components for .NET. For example, these two components have free version for creating excel files:
gembox excel component (xlsx and xls files up to 150 rows)
excel jetcell net component (without restriction writes text to excel files xls and xlsx)
The Excel interop libraries work by opening the Excel application in the background to process the spreadsheet. So without updating your code, you will need to have Excel installed on the server. However using interop is a very slow and error prone solution to working with Excel from ASP.NET, the link Joel gave provides several good alternatives.

Resources