@@ -11,10 +11,10 @@ This library allows you create new and read and modify existing .lnk files. It c
* extra data blocks: Darwin, IconEnvironment, KnownFolder, PropertyStore, Shim, SpecialFolder
* some options in LinkTargetIDList because this section is not documented
* environment variables: you can use it in target path but it resolves while creating link and not stored in the lnk file (the reason is previous item)
* environment variables: you can use it in target path but it resolves while creating link and not stored in the lnk file
### Examples
Easiest way to create link with default parameters: `ShellLink.createLink("targetfile", "linkfile.lnk")`
Easiest way to create link with default parameters: `ShellLinkHelper.createLink("targetfile", "linkfile.lnk")`
Following example demonstrates creating link for .bat file and setting working directory, icon and setting up font parameters for console
```
...
...
@@ -24,8 +24,8 @@ import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {