The SSL/TLS store location is not standardised across operating systems or even Linux distros. It could be anywhere in:
- /etc/ssl/certs
- /etc/pki/tls/certs/ca-bundle.crt
- /etc/ssl/certs/ca-bundle.crt
- /etc/pki/tls/certs/ca-bundle.trust.crt
The SSL/TLS store location is not standardised across operating systems or even Linux distros. It could be anywhere in:
| <!-- Office 365 client configuration file sample. To be used for Office 365 ProPlus 2016 apps, | |
| Office 365 Business 2016 apps, Project Pro for Office 365 and Visio Pro for Office 365. | |
| For detailed information regarding configuration options visit: http://aka.ms/ODT. | |
| To use the configuration file be sure to remove the comments | |
| For Office 365 client apps (verion 2013) you will need to use the 2013 version of the | |
| Office Deployment Tool which can be downloaded from http://aka.ms/ODT2013 | |
| The following sample allows you to download and install Office 365 ProPlus 2016 apps |
| Host Enumeration: | |
| --- OS Specifics --- | |
| wmic os LIST Full (* To obtain the OS Name, use the "caption" property) | |
| wmic computersystem LIST full | |
| --- Anti-Virus --- | |
| wmic /namespace:\\root\securitycenter2 path antivirusproduct |
| #!/bin/bash | |
| for file in $(git diff --cached --name-only | grep -E '\.(js|jsx)$') | |
| do | |
| git show ":$file" | node_modules/.bin/eslint --stdin --stdin-filename "$file" # we only want to lint the staged changes, not any un-staged changes | |
| if [ $? -ne 0 ]; then | |
| echo "ESLint failed on staged file '$file'. Please check your code and try again. You can run ESLint manually via npm run eslint." | |
| exit 1 # exit with failure status | |
| fi | |
| done |
| /** | |
| * @class com.flexdevguy.data.reader.KeyValue | |
| * @extends Ext.data.reader.Json | |
| * Key value json reader for store | |
| */ | |
| Ext.define('com.flexdevguy.data.reader.KeyValue', { | |
| extend: 'Ext.data.reader.Json', | |
| alias : 'reader.keyvalue', | |
| getRoot: function(data) { |
| @echo off | |
| set "tool7z=%TOT_CORE%\7-Zip\7z" | |
| set "jdk_exe=%1" | |
| echo Extracting '.rsrc/1033/JAVA_CAB10/111' | |
| %tool7z% e %jdk_exe% .rsrc/1033/JAVA_CAB10/111 | |
| :: %tool7z% e %jdk_exe% .rsrc/1033/version.txt | |
| echo Extracting '111' | |
| extrac32 111 |
| Service | SSL | status | Response Type | Allowed methods | Allowed headers |
|---|
Technical details for https://stackoverflow.com/a/44169445/6730571
On a base system, /usr/bin/java is a symlink that points to /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java, which is an Apple wrapper tool that locates and executes the actual java.
(Do not touch anything in those 2 system directories. It should actually be impossible due to "System Integrity Protection" anyway.)
If you don't have Java installed, attempting to execute java will open a dialog that invites you to install it.
blogs.msdn.microsoft.com/carloshm/2016/01/16/how-to-compose-a-new-message-or-event-and-populate-fields-in-office365/
| @echo off | |
| setlocal EnableDelayedExpansion | |
| set "startTime=%time: =0%" | |
| set /P "=Any process here..." | |
| set "endTime=%time: =0%" | |