Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/documentation/Certificate Installation/GenerateServiceCertificate.cmd @ 1583

Last change on this file since 1583 was 1583, checked in by mbecirov, 16 years ago

#528 Command for creating service certificates

File size: 928 bytes
Line 
1@echo off
2REM Use this tool to create a testcertificate on the server:
3REM ========================================================
4REM Options:
5REM -sr  specifies the Store Location -> must be the same as used in WcfSettings.cs!
6REM -ss  specifies the Store Sub Location -> must be the same as used in WcfSettings.cs!
7REM -n   certificate name, don't change!
8REM -sk  specifies the primary use
9REM ========================================================
10cls
11echo This batch will create and install a new service certificate
12echo for the HIVE Server!
13echo You must have administrator rights in order to access the
14echo local machine certification store, otherwise you will get
15echo an error message. In that case try to change the store location
16echo to CurrentUser and also change the store location in WcfSettings to CurrentUser.
17pause
18makecert –sr LocalMachine –ss My –n CN=HIVE-Server –sk HTTPS-Key
19pause
Note: See TracBrowser for help on using the repository browser.