Commit Graph

51 Commits (f9e0126cf8baad61e9009b47d04aad2e06c20821)

Author SHA1 Message Date
Daniel d18c5b237c
Fix outdated tag (#548)
* Fix outdated tag

* Replace logmode and rotate with log and roll

* Fix typo

* Fix quotes

* Fix quotes
2020-06-23 10:15:03 +08:00
NextTurn d086905003
Fix typos 2020-05-28 23:26:33 +08:00
Buddhika Chathuranga 395b4679a4 projectStructure.md updated 2020-05-26 17:09:44 +05:30
Buddhika Chathuranga 6ef42a988e Update projectStructure.md 2020-05-23 16:10:29 +05:30
Buddhika Chathuranga 24b2d0e933
Fix typos 2020-05-18 19:30:59 +05:30
Buddhika Chathuranga e97486cfc4
Fix typos and grammar 2020-05-18 05:34:57 +05:30
Buddhika Chathuranga 39e4035912
Fixed typos 2020-05-17 10:25:55 +05:30
Buddhika Chathuranga aa062025d5 projectStructure.md template added
Code dive session video link added
2020-05-17 01:43:18 +05:30
NextTurn 09cdb0a0ec
Support <startarguments> and <stoparguments> 2020-05-09 11:49:25 +08:00
Esteban Garcia c45a316008
Update proxy documentation 2020-05-01 20:12:20 -05:00
Esteban Garcia 0a81ca6ed2
Add proxyServer documentation 2020-04-30 11:52:08 -05:00
NextTurn 8d43eff655
Note about the "incremental download" feature 2020-04-30 11:23:26 +08:00
Next Turn 5881e8eccd
Warn about broken auto-archiving settings (#522)
* Warn about broken settings

* Apply suggestions from code review

Co-Authored-By: Oleg Nenashev <o.v.nenashev@gmail.com>

* Apply suggestions from code review

Co-authored-by: Oleg Nenashev <o.v.nenashev@gmail.com>
2020-04-22 23:08:54 +02:00
NextTurn 1454e3ca36 Remove locale from docs.ms link 2020-04-20 14:22:17 +08:00
NextTurn ea6ea9b2cc
Remove content about renaming running executables 2020-04-19 19:16:35 +08:00
NextTurn f704477a31
Revise the installation guide 2020-04-16 14:47:19 +08:00
NextTurn 9b8d8083f0
Remove offline mode section from installation guide 2020-04-15 14:29:05 +08:00
Oleg Nenashev 195966a9f4
Merge pull request #474 from NextTurn/accounts
Document special accounts and the default domain
2020-04-06 10:08:28 +02:00
Oleg Nenashev 6a20f07329
Merge pull request #475 from NextTurn/links
Update links
2020-04-06 09:38:25 +02:00
NextTurn 2d3b9c5260
Update links 2020-04-06 13:58:22 +08:00
NextTurn c07631beda
Document special accounts and the default domain 2020-04-06 13:56:50 +08:00
NextTurn 26360ea696
Update documentation headers 2020-04-01 21:52:12 +08:00
NextTurn f0ec34ba63
Clean up documentation 2020-04-01 13:02:47 +08:00
NextTurn 23c2202406
Support security descriptor string 2020-03-28 14:50:19 +08:00
zhifeng hu 4901b230f3 Fix document about defer file operation 2019-09-07 14:03:54 +08:00
CorwinNewall 13bd392b6c
Update xmlConfigFile.md
- Corrected smart quotes
- Fixed format of header
2019-02-11 14:49:11 +13:00
CorwinNewall c9c5d6983d
Update deferredFileOperations.md
Added missing word, fixed pluralisation
2019-01-25 15:15:42 +13:00
Ricardo Polo 2e606fe02f
Update installation.md
Wrong order in list
2018-06-22 17:51:46 -05:00
Dinz 9014f38b9c Added Support for the log appender roll-by-size-time to zip older files (#259)
* Introduced the following new elements.
1. logname - you can override the name of the log file rather than using the EXE name, this means you don't have to call your EXE a different name, just name the winsw exe different. Default's the name to the EXE as before.
2. outfiledisabled - you can disable writing to the out file. Defaults to false.
3. errfiledisabled - you can disable writing to the error file. Defaults to false.
4. outfilepattern - you can choose the pattern of the out file. Defaults to .out.log.
5. errfilepattern - you can choos the pattern of the error file. Defaults to .err.log.

* Downgraded from C#7.0 syntax.

* Applied reviewers comment

* not required

* removed the key

* Added unit test for new fields logname, outfiledisabled, errfiledisabled and errfilepattern.

Created a new appender called roll-by-size-time see class RollingSizeTimeLogAppender, this appender supports rolling by time and size and rolling at a specific time each day.

Added unit test for the new appender.

Added a new option testwait which is similar to test but waits for the user to press any key before calling the stop method.

* Update loggingAndErrorReporting.md

* Cannot use $ string.format syntax, downgraded code to string.format.

* Another syntax found of $

* Fixed a unit tests

* Added support to zip files.

* Added error handling

* Removed the zip call at startup.

* Fix issue with UTC

* Update loggingAndErrorReporting.md

Documented the new fields zipolderthannumdays and zipdateformat

* Update loggingAndErrorReporting.md

* Applied Code review

* Fixed a BST bug

* Added zip lib
2018-06-19 18:39:03 +02:00
David Klassen 15d3c3b120 Fix in the documentation (username > user) 2017-10-09 13:22:29 +02:00
Dinz 221d30f271 Introduced the following new elements. (#247)
* Introduced the following new elements.
1. logname - you can override the name of the log file rather than using the EXE name, this means you don't have to call your EXE a different name, just name the winsw exe different. Default's the name to the EXE as before.
2. outfiledisabled - you can disable writing to the out file. Defaults to false.
3. errfiledisabled - you can disable writing to the error file. Defaults to false.
4. outfilepattern - you can choose the pattern of the out file. Defaults to .out.log.
5. errfilepattern - you can choos the pattern of the error file. Defaults to .err.log.

* Downgraded from C#7.0 syntax.

* Applied reviewers comment

* not required

* removed the key

* Added unit test for new fields logname, outfiledisabled, errfiledisabled and errfilepattern.

Created a new appender called roll-by-size-time see class RollingSizeTimeLogAppender, this appender supports rolling by time and size and rolling at a specific time each day.

Added unit test for the new appender.

Added a new option testwait which is similar to test but waits for the user to press any key before calling the stop method.

* Update loggingAndErrorReporting.md

* Cannot use $ string.format syntax, downgraded code to string.format.

* Another syntax found of $

* Fixed a unit tests
2017-09-18 18:22:01 +02:00
Oleg Nenashev d192c03638 #183 - Add core logic for the DelayedStart option support (#205)
* #183 - Add core logic for the DelayedStart option support

* #183 - Add unit tests

* #183 - Update documentation and the configuration sample

* #183 - Use API calls to set the DelayedAutoStart flag as @jtnord proposed

* #183 - Refactor the project to use `delayedAutoStart`
2017-04-18 23:23:52 +02:00
Torsten 5c71911e7b Update CA import link in xmlConfigFile.md (#207)
The URL for the CA import was wrong.
2017-04-15 20:25:21 +02:00
Oleg Nenashev 790b3a6541 Finalize the Download Command changes (#203)
* Refactor parameter parsing in Download.cs, add more checks

* Handle Download#unsecureAuth as boolean

* Parse Enums in a case-insensitive mode, propagate error correctly

* Add tests for the newly introduced functionality

* Update the configuration sample to reflect the recent changes

* Update the sample text according to the proposal from @nightman68
2017-04-13 16:49:59 +02:00
Oleg Nenashev f0770a0e15 Introduce the Download#FailOnError option. (#195)
* Introduce the Download#FailOnError option.

The change also adds logging of download operations to the wrapper log

* Add documentation for the failOnError flag
2017-04-11 22:57:39 +02:00
Torsten 5803d3ce15 Add support of authentication in the download operation (#194)
Issue #126 - Add support of authentication in the download settings
2017-04-11 22:37:44 +02:00
kenmaglio 5e9f98c6f8 Update of Puppet Module Documentation 2017-02-03 09:53:00 -06:00
Oleg Nenashev 5622dfb175 Issue #170 - Add reference to the configuration samples to the XML Config page 2016-12-23 22:51:46 +01:00
Oleg Nenashev 41dd37f5db Amend the installation guide - patching for .NET4 is no longer required 2016-12-09 22:46:28 +01:00
beatcracker 738ce95804 How to use (Group) Managed Service Accounts 2016-12-08 19:10:20 +03:00
Oleg Nenashev 6c0f6d1f7a Fixes #142 - Deploy the automatic build on Appveyor (#144)
* First configuration stub

* Get rid of the old winsw_cert.pfx references, adjust docs

* Fix the corrupted log4net reference, we use 2.0.3

* Generate stub SNK file

* Signing: Try full SDK path to generate SNKs

* Fix the path

* Signing: Sign all assemblies being packed into WinSW

* Tests: Try enabling tests

* Tests and artifacts: Use absolute paths

* Artifact path must be relative

* The test DLL is the NUnit one

* nunit-console does not require loggers

* NUnit: Try picking all DLLs in the output folder

* NUnit console: No wildcards

* Tests: Fix the test project to make it properly working with the new project structure

* Docs: Clarify the specifics of external extension usage

* Add AppVeyor badge to README.md
2016-12-04 09:34:19 +01:00
Oleg Nenashev 449110f87f Docs: fix the link in extensions.md 2016-12-02 15:05:15 +01:00
Oleg Nenashev 0f354b42ac Document the extension engine and exisitng extensions (#141)
* Document the extension engine and exisitng extensions

* Add the link to Extensions in ToC
2016-12-02 13:59:26 +01:00
kenmaglio 6d570f6f71 Add Documentation for the Puppet Module (#140)
* Update Main ReadMe to include CM and Puppet doc link

Add a link to a page built to describe the module in the Puppet Forge

* Initial Creation

* Adds Content for Puppet Module

* Remove accidental asterik

* Syntax Error for Link

* Typo On Link

* Updates to a documentation spec
2016-11-30 19:54:07 +01:00
Oleg Nenashev dc9378d9e5 Docs: Cleanup leftover TODOs 2016-11-26 01:40:02 +03:00
Oleg Nenashev 38ccac88ca Add a simple documentation stub for the EXE Config File 2016-11-26 01:36:39 +03:00
Oleg Nenashev b60756b8c5 Make the document less personalized 2016-11-26 01:19:05 +03:00
Oleg Nenashev 4ec9984c1f Document the "myapp.exe install /p" call 2016-11-26 01:10:12 +03:00
Oleg Nenashev f8a6b32f82 Docs: Integrate documentation from Wiki (solves #132) 2016-11-26 01:05:05 +03:00
Oleg Nenashev 1bb286cc4c Docs: Fix links 2016-11-25 23:56:39 +03:00