hexsha
stringlengths
40
40
size
int64
5
1.04M
ext
stringclasses
6 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
3
344
max_stars_repo_name
stringlengths
5
125
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
sequencelengths
1
11
max_stars_count
int64
1
368k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
344
max_issues_repo_name
stringlengths
5
125
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
sequencelengths
1
11
max_issues_count
int64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
344
max_forks_repo_name
stringlengths
5
125
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
sequencelengths
1
11
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
5
1.04M
avg_line_length
float64
1.14
851k
max_line_length
int64
1
1.03M
alphanum_fraction
float64
0
1
lid
stringclasses
191 values
lid_prob
float64
0.01
1
d9dc133f7513c65f1e1eca4b180f053bb8b1ec84
38,636
md
Markdown
specifications/trusted_computing_base/key_manager/README.md
dmitri-perelman/diem
921769f7f85a3885f34b2de9969d06b8851f62e8
[ "Apache-2.0" ]
null
null
null
specifications/trusted_computing_base/key_manager/README.md
dmitri-perelman/diem
921769f7f85a3885f34b2de9969d06b8851f62e8
[ "Apache-2.0" ]
120
2021-10-21T06:29:51.000Z
2022-03-30T00:23:13.000Z
specifications/trusted_computing_base/key_manager/README.md
dmitri-perelman/diem
921769f7f85a3885f34b2de9969d06b8851f62e8
[ "Apache-2.0" ]
null
null
null
# Key Manager specification This specification outlines the design and execution of the Key Manager (KM): the primary service responsible for managing and rotating cryptographic keys used by validator nodes and validator full nodes in the Diem payment network. ## Table of Contents 1. [Overview](#overview): We begin this specification by first presenting a broad overview of the KM. Here, we motivate the KM, identify the cryptographic keys the KM is responsible for, discuss the KM architecture and outline the high-level operational flow of the KM. 2. [External Components and Abstracted Modules](#external-components-and-abstracted-modules): Next, we discuss in detail the external services the KM relies upon during execution, and present the abstracted external modules leveraged at runtime. 3. [Key Manager Modules and Data Structures](#key-manager-modules-and-data-structures): Third, we present the general data structures defined and used by the KM. This includes a description of how the KM is started and the various entry points into the service. 4. [Security Considerations](#security-considerations): Finally, we conclude this specification by outlining the various security considerations that need to be taken into account when deploying the KM. ## Overview Validator nodes (VNs) and validator full nodes (VFNs) generate and store cryptographic keys in order to securely participate in the Diem network. For example, each VN in Diem maintains a secret and unique cryptographic key that can be used to sign votes on quorum certificates; this allows VNs to achieve [consensus](https://github.com/diem/diem/tree/master/specifications/consensus) on transactions within Diem. Likewise, all VNs and VFNs in the network maintain cryptographic keys to authenticate and encrypt communication between nodes; thus, preventing adversaries from interfering with network communication in order to perform attacks. To maintain the integrity and confidentiality of cryptographic keys in the Diem network, the KM is responsible for automatically rotating these keys over time. This provides freshness for keys used by the VNs and VFNs mitigating long range attacks, where keys are compromised and gathered over long periods of time. ### Cryptographic Keys At present, the KM plays a role in rotating the following asymmetric cryptographic keys in Diem: 1. The _consensus_ key -- an `Ed25519PrivateKey` used by VNs to sign votes on quorum certificates to achieve consensus. Note: from this point forward, whenever we refer to a cryptographic key by name (e.g., the consensus key), we are referencing the private exponent of the key (e.g., the `Ed25519PrivateKey`). References to the public exponent of a cryptographic key will always be clarified. ### Key Manager Architecture At a high-level, the KM is designed to be a stand-alone service that drives the rotation of cryptographic keys across the relevant services and components that make up a VN and VFN. Each VN/VFN instance in the Diem network will deploy its own KM to manage the keys on that instance and perform rotations as required. The diagram below shows a broad overview of the KM operating within the context of a VN. The rest of this section is dedicated to explaining this architecture and presenting how it operates. ![Key Manager Architecture](key_manager.svg) **Key Manager Architecture**: First, there are several important components that must be highlighted within the architecture diagram above; these are displayed in color: * **Secure Storage**: First, Secure Storage (SS) is the storage backend used by the KM to persist and hold cryptographic keys. The KM relies on SS as a single source of truth regarding the value of any cryptographic key for the VN/VFN. For more information about the SS, see the specification, [here](https://github.com/diem/diem/tree/master/specifications/trusted_computing_base/secure_storage). * **Validator Configs**: Second, the mapping between VNs/VFNs to cryptographic keys is stored on the Diem blockchain in a `Validator Config` resource held under each validator operator's account. For example, in the case of the consensus key, each VN will register their consensus key in the validator config of that node, on-chain. The consensus key for that VN can then be seen by all other VNs in the network, and thus used to authenticate the consensus votes signed by the consensus key. To protect the validator config of each VN/VFN, each VN/VFN is assumed to have a unique and private identity key, called the _operator key_ that has permission to update the validator config for that VN. The _operator key_ is initialized and held in the SS for each VN and VFN. More details on validator configs and the _operator key_ is presented below. * **JSON RPC Endpoint**: Third, in order to interact with state on the Diem blockchain (e.g., update each validator config), the KM requires the ability to read and write transactions to the blockchain. To achieve this, a JSON RPC endpoint is assumed to be online and available to handle KM requests. * **Components with Exported Keys**: Fourth, and finally, each VN may have multiple components that maintain direct copies or exports of cryptographic private keys. It is important to note these components explicitly, as they not only affect how the KM supports key rotations, but they also have significant security implications. For example, in the diagram above, we can see the Diem Safety Rules (LSR) component. LSR is a component within each VN responsible for participating in consensus (see [here](https://github.com/diem/diem/tree/master/specifications/trusted_computing_base/safety_rules)). For performance reasons, LSR maintains its own local copy of the consensus private key, which we term an _exported key copy_. We highlight components that maintain exported key copies and discuss the implications of key copies to the KM's role in further detail below. ### Consensus Key Rotation Protocol Given the KM architecture presented above, we now describe the high-level flow of a VN consensus key rotation as performed by the KM. The diagram below augments the architecture diagram with numbered steps showing the interactions between the KM and the various components in the architecture. We explain each step in detail below: ![Key Manager Rotation Architecture](key_manager_rotation.svg) 1. Before the KM is deployed, it is assumed that when the VN is started, the SS is automatically initialized with: (i) the operator key, i.e., the identity key for the VN (denoted **operator_private**); and (ii) the consensus key, i.e., the key by which the VN will sign quorum certificates to achieve consensus (denoted **consensus_private**), Moreover, it is further assumed that the public exponent of **consensus_private** (denoted **consensus_public**) will already be registered on-chain in the validator config for the VN using the public exponent of **operator_private** (denoted **operator_public**). 2. When the KM is invoked to perform a consensus key rotation, it will first contact the SS to produce a new consensus private key, **consensus_private<sup>{i+1}</sup>**, internally and overwrite the current consensus private key, **consensus_private<sup>{i}</sup>**. 3. Once the SS has overwritten **consensus_private<sup>{i}</sup>** with **consensus_private<sup>{i+1}</sup>**, it will return the public exponent of the new consensus key, **consensus_public<sup>{i+1}</sup>**, to the KM (this is the new consensus public for the VN). 4. The KM will take the new consensus public key returned by the SS, **consensus_public<sup>{i+1}</sup>** and generate a _rotation transaction_ that updates the on-chain validator config with the new consensus public key for the VN using the operator public key (i.e., sets **consensus_public<sup>{i}</sup>** to **consensus_public<sup>{i+1}</sup>** for the validator config of the VN). The KM will then forward the new rotation transaction to the SS to be signed. 5. The SS will sign the rotation transaction using **operator_private** internally and return the _signed rotation transaction_ to the KM. 6. The KM will take the signed rotation transaction and forward it to the Diem blockchain via the JSON RPC endpoint (i.e., the endpoint by which the KM can read and write transactions to the blockchain). 7. At some later point in time, the signed rotation transaction is committed to the blockchain, meaning that when the next consensus reconfiguration event occurs (i.e., the next set of VNs is to selected to perform consensus, see [here](https://github.com/diem/diem/tree/master/specifications/consensus)), the consensus key for the VN will be updated to **consensus_public<sup>{i+1}</sup>**. 8. Once all 6 steps above have been completed, the consensus key for the VN has successfully been rotated both inside the SS, and on the blockchain. However, due to performance reasons, it's possible that other components within the VN may have previously exported the consensus private key and thus hold temporary copies of the old key locally. For example, LSR is one such component: to improve the throughput and latency of the consensus algorithm, LSR exports the consensus private key upon initialization, and maintains a copy of the private key in local memory. This avoids having to contact the SS whenever it wishes to sign a quorum certificate. In order to prevent this key from becoming stale, LSR monitors the blockchain for reconfiguration events, and after each reconfiguration event, LSR will verify if the consensus key for this VN has been rotated. If so, LSR will query the SS directly to export the consensus private key corresponding to the consensus public key registered in the validator config on-chain (i.e., fetch **consensus_private<sup>{i+1}</sup>** for **consensus_public<sup>{i+1}</sup>**). 9. Upon a key export request, the SS will verify the requester has appropriate permissions to retrieve the requested key, and if so, return the key as required. In this case, it will return **consensus_private<sup>{i+1}</sup>** to LSR. This concludes the consensus key rotation. ### Consensus Key Rotation Failures At any point during a consensus key rotation, it is possible for any component within the key rotation pipeline to fail. For example: (i) the KM itself may crash during a key rotation; (ii) the SS may be offline for some period of time; (iii) the JSON RPC endpoint may fail to forward signed rotation transactions to the blockchain; or (iv) a component that maintains an exported key copy may fail (e.g., LSR). As such, it is the responsibility of the KM to provide fault tolerance against key rotation failures. For this, the KM assumes that any and all failures are transient, i.e., that the failure will occur for only a finite amount of time, after which the failed component will resume operation and the KM can address any inconsistencies. We make several important observations regarding consensus key rotation failures: 1. First, we note that the worst thing that could happen as a result of a failure is that there is a consensus key mismatch between various components in the pipeline. For example, the consensus private key held in the SS, and the consensus public key registered on-chain may differ if the signed rotation transaction never makes it to the blockchain during a rotation (i.e., step 5 above). This results in a liveness issue, as the VN will not be able to continue to participate in consensus -- however, safety is not be violated. In this scenario, the KM will need to re-sync the consensus key versions between the SS and the blockchain. See the failure recovery protocol section below for how to recover from this. 1. Second, we note that there may be instances where a component within the VN that maintains an exported key copy (e.g., LSR) requires access to a previous version of the consensus key in order to operate. This can occur if the component fails at a critical point during a key rotation. For example, imagine a case where the consensus key has been rotated successfully from **consensus_private<sup>{i}</sup>** to **consensus_private<sup>{i+1}</sup>** , both in the SS and on-chain, and the KM is currently waiting for a reconfiguration event to occur for the rotation to complete (step 6 above). During this time, it's possible that LSR may fail and recover. In this case, LSR requires another copy of the consensus key to participate in consensus. However, a reconfiguration event has yet to occur, as such, the new consensus key held in the SS (**consensus_private<sup>{i+1}</sup>**) will not be valid until the reconfiguration occurs. In this case, LSR will simply have to wait before the VN can once again participate in consensus. While this is only a temporary liveness issue, it is undesirable, and thus recommended that the SS maintains the last **N=2** versions of all keys it has rotated to avoid this and allow previous key versions to be acquired. Therefore, LSR can query the SS for the old key version (**consensus_private<sup>{i}</sup>** ), and use that while waiting for the reconfiguration event to trigger the retrieval of the new key version (**consensus_private<sup>{i+1}</sup>** ). We note that while **N=2** is sufficient to handle this scenario, it's possible that other scenarios may arise where **N=2** is insufficient (i.e., when LSR may require the consensus key >1 version behind the most recent). Given that such scenarios are extremely rare, however, and only result in a temporary liveness issue, we don't deem it necessary to prevent such cases. **Failure Recovery Protocol:** To achieve fault tolerance against component failures (including the KM itself), the KM should periodically check the state of the consensus key across components in the system, by performing the following steps: 1. Verify that the consensus key version held in the SS (**consensus_private<sup>{i}</sup>** ) corresponds to the consensus key version registered on the Diem blockchain for this VN (**consensus_public<sup>{i}</sup>** ). If so, no action is required as everything is consistent. If these key versions differ, however, the KM should proceed to step 2 below. 2. Check if a signed rotation transaction that updates the validator config to the consensus key version currently held in the SS has recently been submitted to the blockchain. If so, it's likely that the KM simply needs to wait until the transaction is processed. In this case, the KM should sleep before returning to step 1 above. If a signed rotation transaction hasn't recently been submitted, or one was previously submitted but it has now expired (i.e., passed the transaction expiration time), the KM should proceed to step 3 below. 3. The KM should regenerate the signed rotation transaction to update the on-chain consensus key version, and resubmit the transaction to the blockchain (i.e., see, step 3 in the [consensus key rotation](#consensus-key-rotation-protocol) section above). The KM should then sleep for a while and return to step 2 above. **LSR Failure Recovery Steps:** As already outlined in this section, should LSR fail and restart at any point, it will need to read the currently registered consensus public key on the blockchain for this VN and retrieve the corresponding private key from the SS. Given that the SS maintains **N=4** versions of the consensus key at any time, this should be successful in the majority of cases. If the SS fails to contain the corresponding private key for the consensus key version registered on-chain, LSR should simply wait until a reconfiguration event occurs which announces the new consensus key, and retrieve the corresponding private key from the SS before resuming execution. ## External Components and Abstracted Modules In this section, we discuss in further detail the external components relied upon by the KM. These are: the secure storage (SS), the validator configs, and the JSON RPC endpoint. For each of these components, we present abstractions (e.g., component interfaces) in order to reason about the correctness of the KM protocols. Assuming each of these external components is implemented correctly (i.e., according to the interfaces they expose), we argue for the security and correctness of the KM. ### Secure Storage (SS) The SS offers a secure persistent backend for generating, storing and managing security-critical data. While this includes a wide variety of data types (e.g., arbitrary text, json blobs, waypoints etc.), the KM only requires cryptographic key support from the SS. As such, we focus on this support here. For further information about the SS, see the specification [here](https://github.com/diem/diem/tree/master/specifications/trusted_computing_base/secure_storage). At a high-level, the KM requires several important functionalities from the SS. We list these functionalities below, and for each functionality, explain what it is required, and where it is used. - **Secure Key Generation**: First, the KM requires the SS to be able to securely generate cryptographic private keys internally. This is needed: (i) initially when the VN is created, i.e., to initialize the value of each private key. This is step 0 in the KM key rotation protocol in the section above; and (ii) whenever a key rotation is subsequently performed, i.e., to generate a new version of the private key locally. This is step 1 in the KM key rotation protocol above. - **Signature Generation**: Second, the KM requires the SS to be able to sign data (e.g., a transaction hash) using private keys held internally inside the SS. This avoids having to expose private keys to the world outside the SS. Here, the KM requires signature generation support when it requests the SS to sign the rotation transaction using the consensus key -- step 3 in the KM key rotation protocol. - **Key Versioning**: Third, the KM requires the SS to be able to store and maintain multiple versions (e.g., **N=2**) of each private key locally. This is needed to recover from specific failure scenarios, e.g., LSR requiring a previous version of the consensus key after a failure. See the [consensus key rotation failures](#consensus-key-rotation-failures) section above. - **Private Key Export**: Fourth, the KM requires the SS to allow the exporting of private keys outside the domain of the SS. This is so that specific components within each VN can maintain *hot copies* of specific keys. For example, LSR requires a local hot copy of the consensus key for performance reasons (see the section above). To support all of the required functionalities listed above for the KM, the SS provides a complete cryptographic key API named `CryptoStorage`. The snippet below shows a simplified `CryptoStorage` API. To view the full API, see the SS specification [here](https://github.com/diem/diem/tree/master/specifications/trusted_computing_base/secure_storage). ```rust // CryptoStorage offers a secure storage engine for generating, using and managing cryptographic /// keys securely. pub trait CryptoStorage: Send + Sync { /// Securely generates a new named Ed25519 key pair and returns the corresponding public key. fn create_key(&mut self, name: &str) -> Result<Ed25519PublicKey, Error>; /// Returns the private key for a given Ed25519 key pair, as identified by the 'name'. fn export_private_key(&self, name: &str) -> Result<Ed25519PrivateKey, Error>; /// Returns the private key for a given Ed25519 key pair version, as identified by the /// 'name' and 'version'. fn export_private_key_for_version( &self, name: &str, version: Ed25519PublicKey, ) -> Result<Ed25519PrivateKey, Error>; /// Rotates an Ed25519 key pair by generating a new Ed25519 key pair, and updating the /// 'name' to reference the freshly generated key. fn rotate_key(&mut self, name: &str) -> Result<Ed25519PublicKey, Error>; /// Signs the given message using the private key associated with the given 'name'. fn sign_message(&mut self, name: &str, message: &HashValue) -> Result<Ed25519Signature, Error>; /// Signs the given message using the private key associated with the given 'name' /// and 'version'. fn sign_message_using_version( &mut self, name: &str, version: Ed25519PublicKey, message: &HashValue, ) -> Result<Ed25519Signature, Error>; } ``` As can be seen from the snippet above, the `CryptoStorage` API offered by the SS provides all of the required functionalities for the KM to operate correctly. More specifically: - **Secure Key Generation** is offered by the `create_key(..)` and `rotate_key(..)` API calls. As such, the SS can be initialized when the VN is started by calling `create_key(..)` for the `operator_key` and `consensus_key`. Moreover, each time the KM needs to generate a new key version for the consensus key, `rotate_key(consensus_key..)` can be called. - **Signature Generation** is offered by the `sign_message(..)` and `sign_message_using_version(..)` API calls. As such, the KM can request the SS sign the rotation transaction by calling `sign_message(operator_key,rotation_transaction)`. - **Key Versioning** is supported by the `rotate_key(..)`, `export_private_key_for_version(..)` and `sign_message_using_version(..)` API calls. The version of each key is specified using the public key, and multiple versions of each key (i.e., **N>1**) are maintained by the SS. - **Private Key Export** is offered by the `export_private_key(..)` and `export_private_key_for_version(..)` API calls. As such, LSR can request a local copy of the consensus key using either of these API calls (depending on the version required). ### Validator Configs As discussed in the overview section above, the validator configs offer a _public key infrastructure_ (PKI) that maps the identity of each VN to the corresponding cryptographic keys (e.g., the consensus key). While this mapping could be done using another PKI system, in Diem, we run this PKI directly on the blockchain. This provides a single source of truth that is both tamper and censorship resistant. To allow dynamic updates to the consensus key, the `ValidatorConfig` decouples the operator key of each VN from the consensus key, allowing VNs to retain a single operator key over time despite performing multiple rotations. To achieve this, each VN in Diem is responsible for publishing and maintaining their `ValidatorConfig`. This configuration is associated with each VN using the VN's _operator account_, and the only way in which to update the `ValidatorConfig` is to sign a Diem transaction using the operator key associated with that account. As a result, only the operator of each VN can modify this configuration. This makes the `ValidatorConfig` an ideal location in which to publish the consensus key of each VN. The snippet below shows the on-chain `ValidatorConfig` of each VN: ```rust pub struct ValidatorConfig { pub consensus_public_key: Ed25519PublicKey, /// This is an lcs serialized Vec<EncNetworkAddress> pub validator_network_addresses: Vec<u8>, /// This is an lcs serialized Vec<NetworkAddress> pub fullnode_network_addresses: Vec<u8>, } ``` As can be seen in the snippet above, `ValidatorConfig` contains a field named `consensus_public_key` of type `Ed25519PublicKey`. This field contains the currently published consensus key of the VN, thus allowing other VNs in the network to identify the consensus key of this VN. **Epoch-specific ValidorConfig Snapshots**: For security and performance reasons, the `ValidatorConfig` of each VN is copied into an external move module called `ValidatorInfo` whenever the VN is selected to participate in a consensus round (i.e., epoch). This snapshot (or copy) is taken at the beginning of each epoch for the next consensus round. `ValidatorInfo` contains the identity information of each VN participating in consensus. As a result, on each epoch change in Diem (i.e., reconfiguration), the VNs participating in that epoch will have their consensus public key frozen for the duration of that epoch, and all other VNs in the network will expect that VN to use the published consensus key in `ValidatorInfo`. This means that consensus key rotations will only take effect on the next reconfiguration (i.e., when a new snapshot of `ValidatorConfig` is copied into `ValidatorInfo`). The snippet below shows `ValidatorInfo`: ```rust /// After executing a special transaction indicates a change to the next epoch, consensus /// and networking get the new list of validators, their keys, and their voting power. Consensus /// has a public key to validate signed messages and networking will has public identity /// keys for creating secure channels of communication between validators. The validators and /// their public keys and voting power may or may not change between epochs. pub struct ValidatorInfo { // The validator's account address. AccountAddresses are initially derived from the account // auth pubkey; however, the auth key can be rotated, so one should not rely on this // initial property. account_address: AccountAddress, // Voting power of this validator consensus_voting_power: u64, // Validator config config: ValidatorConfig, // The time of last recofiguration invoked by this validator // in microseconds last_config_update_time: u64, } ``` As can be seen in the snippet above, every `ValidatorInfo` contains a copy of the most up-to-date `ValidatorConfig` published on the blockchain before the epoch change. This contains the identity information of each VN during the current epoch, including the consensus key published by that VN. ### JSON RPC Endpoint As discussed in the overview section above, the KM must be able to communicate with the Diem blockchain in order to read and update the consensus key of each VN registered on-chain. To achieve this, the KM uses the JSON RPC API offered by each VN endpoint. To execute all steps in the KM rotation and failure recovery protocols, the KM requires the API to provide the following list of functionalities: * **ValidatorConfig Retrieval**: First, the KM requires the JSON RPC API to support retrieval of the `ValidatorConfig` published on-chain for each specific VN. This is needed for failure recovery, for example, when the KM needs to determine if the current consensus key registered on-chain matches the consensus key held in the SS. * **ValidatorInfo Retrieval**: Second, the KM requires the JSON RPC API to support retrieval of the `ValidatorInfo` constructed at the beginning of each epoch. This is needed for failure recovery of LSR. For example, if LSR crashes and recovers, it will need to read the `ValidatorInfo` constructed for the VN in this epoch in order to determine which version of the consensus key each vote should be signed with. * **Transaction Submission**: Third, and finally, the KM requires the API to support transaction submission to the Diem blockchain. This is required so that the KM can submit signed rotation transactions whenever a consensus key rotation is performed (i.e., step 5 in the KM consensus key rotation protocol above). To support all of the functionalities listed above, the JSON RPC endpoint provides the following API. For brevity, we only list the API calls used by the KM. ```rust /// Returns the associated AccountStateWithProof for a specific account. This method returns the /// AccountStatewithProof at the height currently synced to by the server. To ensure the /// correct AccountStatewithProof is returned, the caller should verify the account state proof. pub fn get_account_state_with_proof(&mut self, account: AccountAddress) -> Result<AccountStateWithProof, Error>; /// Submits a signed transaction to the Diem blockchain via the JSON RPC API. pub fn submit(signed_transaction: SignedTransaction) -> Result<(), Error>; ``` As can be seen from the snippet above, the JSON RPC API supports two calls, `get_account_state_with_proof(..)` and `submit(..)`. These are used by the KM to achieve the required functionality in the following manner: * **get_account_state_with_proof**: First, the `get_account_state_with_proof(..)` call returns an associated `AccountStateWithProof` for a specified `AccountAddress`. This call can be used by the KM to: (a) retrieve the `ValidatorConfig` of a specific VN, by passing in the address of the VN to query (i.e., `get_account_state_with_proof(vn_address)`); and (b) retrieve the `ValidatorInfo` of a VN for the current or next epoch. To achieve this, the KM can pass in the `validator_set_address`, an account address specified by Diem to hold specific information about the current VN set (i.e., `get_account_state_with_proof(validator_set_address)`). For further information about what the KM should do with the associated `AccountProof` returned for each call, see the [security considerations](#security-considerations) section below. * **submit**: The `submit(..)` call provides the ability to submit a signed transaction to the blockchain. As such, the KM can call this method with the signed rotation transaction to perform a rotation (i.e., `submit(signed_rotation_transaction)`). ## Key Manager Modules and Data Structures As outlined in the overview section above, the KM is a stand-alone service that operates autonomously in a controlled execution loop. In this section, we present the entry point into the KM and the controlled execution loop. Where appropriate, we present relevant data structures. ### Point of Entry and Execution Loop The KM operates with a single point of entry: a `main(..)` execution function. To initialize the KM and invoke execution using this function, the KM requires specific configuration information. The code snippet below shows the information required by the KM on startup (i.e., the `KeyManagerConfig`): ```rust pub struct KeyManagerConfig { /// Key Manager execution specific constants pub rotation_period_secs: u64, pub sleep_period_secs: u64, pub txn_expiration_secs: u64, /// External component dependencies pub json_rpc_endpoint: String, pub chain_id: ChainId, pub secure_backend: SecureBackend, } ``` As can be seen in the code snippet above, the KM requires three execution specific constants at startup: 1. `rotation_period_secs`: First, the KM requires knowing the period of time between each consensus key rotation (in seconds). This specifies how frequently the KM will perform a rotation. For example, if this is set to `3600` seconds, the KM will rotate the consensus key every hour. 2. `sleep_period_secs`: Second, as the KM is designed to run autonomously in a controlled execution loop, the KM requires knowing how long to sleep between executions (in seconds). This prevents the KM from _busy waiting_ when there is no work to be done and reduces execution load on the machine. 3. `txn_expiration_secs`: Finally, the KM needs to know how long each rotation transaction it creates should be valid for (i.e., the transaction expiration time of each rotation transaction). This prevents transactions from being valid at all points in the future, creating the potential for security vulnerabilities (e.g., replay attacks). If a rotation transaction has been submitted to the blockchain (using the `submit()` JSON RPC API call) but has not ultimately been written to the blockchain within this time, the KM will need to reconstruct a new transaction. Moreover, the KM requires configuration information about how to communicate with the external components it relies on. These are: 1. `json_rpc_endpoint` and `chain_id`: First, the KM requires knowing about the JSON RPC endpoint that it should talk to (i.e., when reading and writing transactions to the blockchain). `json_rpc_endpoint` follows a url format, for example, `https://123.123.123.123:8080`. 2. `secure_backend`: Second, the KM requires knowing about the SS to which it can communicate. This includes the connection credentials to use, the url location of the SS, any supported API version etc. **Execution Loop**: Once the KM has been correctly initialized using a valid `KeyManagerConfig`, the KM follows a single execution loop that obeys the rotation and failure recovery protocols outlined in the overview section above. At a high-level, this means that the KM follows these simple steps in an infinite loop: 1. Verify that the consensus key held by the SS matches the one registered in `ValidatorConfig`. If not, follow the failure recovery protocol above. 2. Read the current time and if enough time has passed since the previous consensus key rotation, perform a consensus key rotation by executing the rotation protocol outlined above. 3. Sleep for `rotation_period_secs` and then return to step 1. ## Security Considerations In this section, we discuss several interesting security considerations that affect the safety and liveness of the KM and/or each VN. * **Proving Consensus Key Ownership**: As discussed above, each VN will announce its consensus public key on-chain. This occurs by essentially updating the mapping between each `operator_key` and `consensus_key` for the VN. However, to ensure that this occurs securely, it is essential that when such updates occur on-chain, ownership of the keys being published are proven. Otherwise, _spoofing_ attacks could occur. For example, consider the case where a malicious or Byzantine VN publishes a transaction on-chain that updates their consensus key to be the same consensus key owned by another VN (i.e., the malicious VN spoofs a consensus key owned by another VN). In this case, there will be two operator keys mapping to the same consensus key. This may allow the malicious VN to benefit financially by appearing to participate in a consensus round, despite not actually doing any work. To avoid this type of attack (and other attacks that might not be so obvious..), the validator config on-chain should require a signature from the consensus key when a validator config update occurs. * **Avoiding Exported Key Copies**: At present, each VN may contain components that manage exported key copies locally, for example, LSR, which stores a local copy of the consensus key in memory in order to sign votes. While this may be beneficial for performance reasons (i.e., LSR doesn't need to contact the SS to perform a signature on each vote), it does lead to concerns about key compromise: if LSR is less secure than the SS, an adversary will simply target the key copy in LSR to compromise the key. Thus nullifying any defenses put into place to protect the consensus key in the SS. To avoid this, the use of exported key copies is _heavily discouraged_, and any components that maintain exported key copies should have significant justifications for doing so. Moreover, such components should be strictly audited for security vulnerabilities, as they will likely become the target of adversaries when deployed. * **Enforcing Periodic Key Rotation**: Key rotation is an attractive means of protecting against various types of attacks on each VN. However, without strictly enforcing key rotation within the network (i.e., making it mandatory), it is possible that VNs will not perform key rotation frequently enough to see any security benefits (e.g., due to being lazy or wanting to avoid the financial or operational costs of performing a rotation). To avoid this, it is essential that VNs that do not rotate their keys frequently enough are disincentivized and/or penalized for their actions. One way to achieve this is to exclude lazy VNs from the set of possible VNs that may participate in the Diem consensus algorithm. Such exclusions may then be lifted once the VNs meet the key rotation requirements. This will help to protect the Diem network against old or compromised keys. * **Verifying vs. Non-verifying the JSON RPC Endpoint**: As discussed above, in order for the KM to perform key rotations, it must be able to read and write transactions to the blockchain. The KM does this internally by interfacing with a JSON RPC endpoint. However, one notable challenge arises when performing such interaction: how does the KM know the information it is being supplied by the endpoint is correct and up-to-date? If an attacker can compromise the JSON RPC endpoint, it may feed the KM stale information or incorrect blockchain state (e.g., transactions). As a result, this could cause a liveness violation for the VN node (e.g., the KM could fail to see that the VN does not have the correct consensus key registered on the blockchain, and thus will be unable to participate in consensus). To defend against this, it is critical that the KM verifies all information returned via the JSON RPC endpoint (e.g., the KM should verify proofs of account state and ensure that the height of the blockchain is monotonically increasing). This will help to reduce the attack surface against the KM. Note, however, that while the KM can verify the blockchain is growing sequentially, it is unable to verify that the information being presented to it is fresh (i.e., that the responses returned by the JSON RPC endpoint hold the most up-to-date information). As such, without querying and aggregating the responses of multiple different JSON RPC endpoints, there are always some levels of implicit trust between the KM and the endpoint it relies on. * **Minimizing the size of the KM and the corresponding TCB**: At present, the KM communicates with the JSON RPC endpoint via a JSON RPC client that verifies API responses. To achieve this, the KM implementation handles and parses both HTTP and JSON responses internally. From a security perspective, however, this is less-than-ideal. The KM forms part of the trusted computing base (TCB) of each VN (read more about the TCB, [here](https://github.com/diem/diem/tree/master/specifications/trusted_computing_base)). As a result, any and all code placed into the KM must be free from software bugs and vulnerabilities. It is critical, therefore, to reduce the amount of code placed into the KM, as this in turn reduces the attack surface of the KM and thus the TCB. We therefore argue that it is more appropriate for the KM to delegate communication with the JSON RPC endpoint to another external component, and only handle the structured API responses and proofs directly. This will prevent the KM from having to perform complex and unnecessary operations locally (e.g., parsing JSON, serialization/deserializing objects). This reduces the size of the TCB and makes the implementation easier to reason about/verify.
152.110236
1,879
0.786986
eng_Latn
0.998636
d9dc8d64def7aed2a1424ccec6e5933ef0d3596f
7,067
md
Markdown
docs/guides/admin/docs/installation/multiple-servers.md
Alaschinger/opencast
649bad8d02831d407ec53399cca882788bcd8404
[ "ECL-2.0" ]
null
null
null
docs/guides/admin/docs/installation/multiple-servers.md
Alaschinger/opencast
649bad8d02831d407ec53399cca882788bcd8404
[ "ECL-2.0" ]
null
null
null
docs/guides/admin/docs/installation/multiple-servers.md
Alaschinger/opencast
649bad8d02831d407ec53399cca882788bcd8404
[ "ECL-2.0" ]
null
null
null
Install Across Multiple Servers =============================== *Note that this is not a comprehensive guide of all possible ways to install Opencast. It is more like a guide to good practices and presents what a lot of people are running.* Step 1: Install Opencast -------------------------- Opencast consists of a large set of modules which together build the whole system. In a distributed set-up, different kinds of nodes are basically only defined by the existence or absence of specific modules. While it is possible to stick together a system module by module, opencast comes with a set of pre-defined distribution which can directly be built and installed. To build these distributions, you would compile Opencast just like it is outlined in the basic installation guides and will then find a set of different distributions, both as archive and in a separate directory. To list all distributions, run the following command after Opencast is built: % ls -1 build/*.tar.gz build/opencast-dist-admin-${version}.tar.gz build/opencast-dist-allinone-${version}.tar.gz build/opencast-dist-presentation-${version}.tar.gz build/opencast-dist-worker-${version}.tar.g ... The same distributions can be found in the packages provided in the Opencast RPM repository. These packages will automatically install all dependencies for a given node type. For example, to install an Opencast worker node, you would install the package `opencast21-distribution-worker`. The following list describes possible set-ups: ### All-In-One This is the default set-up described in the basic installation guides. It works fine for testing purposes. It should usually not be used in production. It is not distributed but is listed here to have a comprehensive list of predefined distributions. ### Two-Server Set-up This set-up is the minimum set-up recommended for productive use. It will separate the video processing from the rest of the system, making the user-facing parts of your system much less affected by heavier loads. ### Three (or more) Server Set-up While in the last example we have created one combined node for both the administrative tools and the workers, in this example we will split it into dedicated worker and admin nodes. Using this set-up it is easy to increase the systems performance simply by adding further worker nodes to the system. Step 2: Set-Up NFS Server ------------------------- Though it is possible to have Opencast run without shared storage, it is still a good idea to do so, as hard links can be used to link files instead of copying them and not everything has to be tunneled over HTTP. Thus you should first set-up your NFS server. The best solution is certainly to have a dedicated storage server. For smaller set-ups, however, it can also be put on one of the Opencast nodes, i.e. on the admin node. To do this, you first have to install and enable the NFS server: yum install nfs-utils nfs-utils-lib chkconfig --level 345 nfs on service nfs start You want to have one common user on all your systems, so that file permissions do not become an issue.. As preparation for this it makes sense to manually create an *opencast* user and group with a common UID and GID: groupadd -g 1234 opencast useradd -g 1234 -u 1234 opencast If the user and group id `1234` is already used, just pick another one but make sure to pick the same one on all your Opencast nodes. Then create the directory to be shared and set its ownership to the newly created users: mkdir -p /srv/opencast chown opencast:opencast /srv/opencast Next we actually share the storage dir. For this we need to edit the file `/etc/exports` and set: /srv/opencast 131.173.172.190(rw,sync,no_subtree_check) with 131.173.172.190 being the IP address of the other machine that should get access. Finally we enable the share with: exportfs -a Of cause you have to open the necessary ports in your firewall configuration. For iptables, appropriate rules could be for example: -A INPUT -m state --state NEW -p tcp -m multiport --dport 111,892,2049,32803 -j ACCEPT -A INPUT -m state --state NEW -p udp -m multiport --dport 111,892,2049,32803 -j ACCEPT You can set them by editing `/etc/sysconfig/iptables` and restarting the service afterwards. Now you have set-up your storage server. What is still left to do is to mount the network storage on all other servers of the Opencast clusters except the capture agents. To do that you need to edit the `/etc/fstab` on each server and add the command to mount the network storage on startup: storageserver.example.com:/srv/opencast /srv/opencast nfs rw,hard,intr,rsize=32768,wsize=32768 0 0 *Important:* Do not use multiple NFS shares for different parts of the Opencast storage dir. Opencast will check if hard links are possible across in a distributed set-up, but the detection may fail if hard links are only possible between certain parts of the storage. This may lead to failures. *Important:* Do not share the Karaf data directory. Doing so will cause Opencast to fail. Please share the storage directory only. Step 3: Set-Up the Database --------------------------- First make sure to follow the [regular database set-up](../configuration/database.md). Do not forget to set the user also for the remote servers and grant them the necessary rights. Additionally, you need to configure your firewall: -A INPUT -p tcp -s 131.173.172.190 --dport 3306 -m state --state NEW,ESTABLISHED -j ACCEPT Step 4: Configure Opencast ---------------------------- You already configured your database, but there is some more configuration you have to do. First of all you should follow the Basic Configuration guide which will tell you how to set the login credentials etc. After that continue with the following steps: ### custom.properties Set the server URL to the public URL of each server (admin URL on admin, worker URL on worker, presentation URL on presentation, …). This may either be this nodes IP address or preferable its domain name: org.opencastproject.server.url=http://<URL>:8080 Set the location of the shared storage directory: org.opencastproject.storage.dir=/srv/opencast ### org.opencastproject.organization-mh\_default\_org.cfg Set the base URL of the server hosting the administrative tools. Again use a domain name instead of an IP address if possible: prop.org.opencastproject.admin.ui.url=http://<ADMIN-URL>:8080 Set the base URL of the server hosting the engage tools (usually the presentation node): prop.org.opencastproject.engage.ui.url=http://<ENGAGE-URL>:8080 Set the base URL of the file server. When using a shared filesystem between servers, set all servers to use the same URL (e.g. URL of the admin node). prop.org.opencastproject.file.repo.url=http://<ADMIN-URL>:8080 ### org.opencastproject.serviceregistry.impl.ServiceRegistryJpaImpl.cfg To ensure that jobs are not dispatched by non-admin nodes, on these you should also set: dispatch.interval=0
42.572289
120
0.757464
eng_Latn
0.998902
d9dcd13039e3f5f430c64522e1a5d802647ba8b2
392
md
Markdown
README.md
RyanWarner/eslint-config-squint-style
e52922d8ec45a25579a248306fbbc6431d91f121
[ "CC0-1.0" ]
null
null
null
README.md
RyanWarner/eslint-config-squint-style
e52922d8ec45a25579a248306fbbc6431d91f121
[ "CC0-1.0" ]
null
null
null
README.md
RyanWarner/eslint-config-squint-style
e52922d8ec45a25579a248306fbbc6431d91f121
[ "CC0-1.0" ]
null
null
null
# eslint-config-squint-style Shareable ESLint config for the Squint style guide [squint-style.guide](http://squint-style.guide) ## Install `$ npm install --save-dev eslint eslint-config-squint-style` ## Usage In your ESLint configuration file, [extend](http://eslint.org/docs/user-guide/configuring#extending-configuration-files) Squint Style. ``` { "extends": "squint-style" } ```
20.631579
134
0.734694
eng_Latn
0.16448
d9dd1e57bef760fd243066ad5cb2f703faba575d
2,393
md
Markdown
wdk-ddi-src/content/srb/nf-srb-scsiportwriteportbufferulong.md
jesweare/windows-driver-docs-ddi
a6e73cac25d8328115822ec266dabdf87d395bc7
[ "CC-BY-4.0", "MIT" ]
null
null
null
wdk-ddi-src/content/srb/nf-srb-scsiportwriteportbufferulong.md
jesweare/windows-driver-docs-ddi
a6e73cac25d8328115822ec266dabdf87d395bc7
[ "CC-BY-4.0", "MIT" ]
null
null
null
wdk-ddi-src/content/srb/nf-srb-scsiportwriteportbufferulong.md
jesweare/windows-driver-docs-ddi
a6e73cac25d8328115822ec266dabdf87d395bc7
[ "CC-BY-4.0", "MIT" ]
1
2021-12-08T21:34:31.000Z
2021-12-08T21:34:31.000Z
--- UID: NF:srb.ScsiPortWritePortBufferUlong title: ScsiPortWritePortBufferUlong function (srb.h) description: The ScsiPortWritePortBufferUlong routine transfers a given number of ULONG values from a buffer to the HBA.Note  The SCSI port driver and SCSI miniport driver models may be altered or unavailable in the future. old-location: storage\scsiportwriteportbufferulong.htm tech.root: storage ms.assetid: ed13ab7a-b287-42e1-af47-fd8f06305cae ms.date: 03/29/2018 keywords: ["ScsiPortWritePortBufferUlong function"] ms.keywords: ScsiPortWritePortBufferUlong, ScsiPortWritePortBufferUlong routine [Storage Devices], scsiprt_314b08e6-e579-4faa-b009-e12ad8f946bc.xml, srb/ScsiPortWritePortBufferUlong, storage.scsiportwriteportbufferulong req.header: srb.h req.include-header: Miniport.h, Scsi.h, Storport.h req.target-type: Desktop req.target-min-winverclnt: req.target-min-winversvr: req.kmdf-ver: req.umdf-ver: req.ddi-compliance: req.unicode-ansi: req.idl: req.max-support: req.namespace: req.assembly: req.type-library: req.lib: Scsiport.lib req.dll: req.irql: targetos: Windows req.typenames: f1_keywords: - ScsiPortWritePortBufferUlong - srb/ScsiPortWritePortBufferUlong topic_type: - APIRef - kbSyntax api_type: - LibDef api_location: - Scsiport.lib - Scsiport.dll api_name: - ScsiPortWritePortBufferUlong --- # ScsiPortWritePortBufferUlong function ## -description The <b>ScsiPortWritePortBufferUlong</b> routine transfers a given number of ULONG values from a buffer to the HBA. <div class="alert"><b>Note</b>  The SCSI port driver and SCSI miniport driver models may be altered or unavailable in the future. Instead, we recommend using the <a href="/windows-hardware/drivers/storage/storport-driver">Storport driver</a> and <a href="/windows-hardware/drivers/storage/storport-miniport-drivers">Storport miniport</a> driver models.</div><div> </div> ## -parameters ### -param Port [in] Pointer to the I/O port. The given <i>Port</i> must be in a mapped I/O-space range returned by <b>ScsiPortGetDeviceBase</b>. ### -param Buffer [in] Pointer to the buffer. ### -param Count [in] Specifies the number of ULONG values to be written to the HBA. ## -returns None ## -see-also <a href="/windows-hardware/drivers/ddi/srb/nf-srb-scsiportgetdevicebase">ScsiPortGetDeviceBase</a>
31.486842
371
0.757626
eng_Latn
0.460371
d9de26cd421dd7b61fa05cacf4350db12bf7c05d
2,976
md
Markdown
i18n/locales/sq-AL/hourofcode/thanks.md
pickettd/code-dot-org
20a6b232178e4389e1189b3bdcf0dc87ba59ec90
[ "Apache-2.0" ]
null
null
null
i18n/locales/sq-AL/hourofcode/thanks.md
pickettd/code-dot-org
20a6b232178e4389e1189b3bdcf0dc87ba59ec90
[ "Apache-2.0" ]
null
null
null
i18n/locales/sq-AL/hourofcode/thanks.md
pickettd/code-dot-org
20a6b232178e4389e1189b3bdcf0dc87ba59ec90
[ "Apache-2.0" ]
null
null
null
* * * title: <%= hoc_s(:title_signup_thanks) %> layout: wide nav: how_to_nav social: "og:title": "<%= hoc_s(:meta_tag_og_title) %>" "og:description": "<%= hoc_s(:meta_tag_og_description) %>" "og:image": "http://<%=request.host%>/images/hourofcode-2015-video-thumbnail.png" "og:image:width": 1440 "og:image:height": 900 "og:url": "http://<%=request.host%>" "twitter:card": player "twitter:site": "@codeorg" "twitter:url": "http://<%=request.host%>" "twitter:title": "<%= hoc_s(:meta_tag_twitter_title) %>" "twitter:description": "<%= hoc_s(:meta_tag_twitter_description) %>" "twitter:image:src": "http://<%=request.host%>/images/hourofcode-2015-video-thumbnail.png" * * * <% facebook = {:u=>"http://#{request.host}/us"} twitter = {:url=>"http://hourofcode.com", :related=>'codeorg', :hashtags=>'', :text=>hoc_s(:twitter_default_text)} twitter[:hashtags] = 'HourOfCode' unless hoc_s(:twitter_default_text).include? '#OraEKodimit' %> # Faleminderit që u regjistruat si organizator në Orën e Kodimit! Ju po i mundësoni studentëve në mbarë botën të mësojnë Orën e Kodimit e cila *mund të ndryshojë jetën e tyre*, gjatë <%= campaign_date('full') %>. Ne do të jemi në kontakt rreth shpërblimeve, tutorialeve te rinj dhe përditësimeve. Cfarë mund të bëni tani? ## 1. Përhap fjalën Ju sapo u bashkuat lëvizjes Ora e Kodimit. Tregojuni miqve tuaj për **#HourOfCode**! <%= view :share_buttons, facebook:facebook, twitter:twitter %> ## 2. Find a local volunteer to help you with your event. [Search our volunteer map](%= resolve_url('https://code.org/volunteer/local') %) for volunteers who can visit your classroom or video chat remotely to inspire your students about the breadth of possibilities with computer science. ## 2. Kërkoj gjithë shkollës që të ofrojë një Orë Kodimi [Dergo këtë email](%= resolve_url('/promote/resources#sample-emails') %) në drejtori dhe sfidoni të gjithat klasat ne shkollën tuaj për tu regjistruar. ## 3. Pyesni punëdhënësin tuaj që të përfshihet [Dërgo këtë email](%= resolve_url('/promote/resources#sample-emails') %) te menaxheri juaj ose te drejtori ekzekutiv i kompanisë. ## 4. Promovo Orën e Kodimit brenda komunitetit tënd [Rekruto një grup lokal](%= resolve_url('/promote/resources#sample-emails') %) — universiteti, klubi i futbollit, teatri. Nuk nevojitet shkolla për të mësuar aftësi të reja. Përdorni këto [postera, banera, stikers, video dhe më shumë](%= resolve_url('/promote/resources') %) për eventin tënd. ## 6. Pyet një deputet lokal për të suportuar Orën e Kodimit [Dërgo këtë email](%= resolve_url('/promote/resources#sample-emails') %) te përfaqësuesit lokal, këshilli i qytetit ose bordi i shkollës dhe ftoji që të vizitojnë shkollën tuaj për Orën e Kodimit. Ajo mund të ndihmojë të ndërtosh mbështetje për shkencën kompjuterike në zonën tuaj përtej një ore. ## 7. Plan your Hour of Code Choose an Hour of Code activity and [review this how-to guide](%= resolve_url('/how-to') %). <%= view 'popup_window.js' %>
60.734694
308
0.732527
als_Latn
0.995947
d9de3bde933db0a69c829e6db0f82a6ed3beace7
8,525
md
Markdown
articles/service-bus/index.md
VinceSmith/azure-docs
550bda5c2baf01ff16b9d109549388ffddddc1fd
[ "CC-BY-3.0" ]
null
null
null
articles/service-bus/index.md
VinceSmith/azure-docs
550bda5c2baf01ff16b9d109549388ffddddc1fd
[ "CC-BY-3.0" ]
null
null
null
articles/service-bus/index.md
VinceSmith/azure-docs
550bda5c2baf01ff16b9d109549388ffddddc1fd
[ "CC-BY-3.0" ]
null
null
null
--- layout: LandingPage description: Learn how to set up messaging that connects applications and services across on-premises and cloud environments. Tutorials, videos, API references, and more. --- #Service Bus Documentation Learn how to use Service Bus to connect across on-premises and cloud environments. Tutorials, videos, API references, and other documentation show how to set up cloud messaging between applications and services. <ul class="panelContent cardsFTitle"> <li> <a href="/azure/service-bus-messaging/service-bus-queues-topics-subscriptions"> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardImageOuter"> <div class="cardImage"> <img src="media/index/service-bus.svg" alt="" /> </div> </div> <div class="cardText"> <h3>Learn about Azure Service Bus</h3> </div> </div> </div> </div> </a> </li> <li> <a href="https://azure.microsoft.com/documentation/videos/index/?services=service-bus"> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardImageOuter"> <div class="cardImage"> <img src="media/index/video-library.svg" alt="" /> </div> </div> <div class="cardText"> <h3>Azure Service Bus Video Library</h3> </div> </div> </div> </div> </a> </li> <li> <a href="/azure/service-bus-messaging/service-bus-create-namespace-portal"> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardImageOuter"> <div class="cardImage"> <img src="media/index/tutorial.svg" alt="" /> </div> </div> <div class="cardText"> <h3>Get Started with Service Bus using the Azure portal</h3> </div> </div> </div> </div> </a> </li> <li> <a href="/azure/service-bus-messaging/service-bus-dotnet-get-started-with-queues"> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardImageOuter"> <div class="cardImage"> <img src="media/index/tutorial.svg" alt="" /> </div> </div> <div class="cardText"> <h3>Get started with Service Bus queues using .NET</h3> </div> </div> </div> </div> </a> </li> <li> <a href="/azure/service-bus-messaging/service-bus-java-how-to-use-queues"> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardImageOuter"> <div class="cardImage"> <img src="media/index/java.svg" alt="" /> </div> </div> <div class="cardText"> <h3>Get started with Service Bus queues using Java</h3> </div> </div> </div> </div> </a> </li> <li> <a href="/azure/service-bus-messaging/service-bus-nodejs-how-to-use-queues"> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardImageOuter"> <div class="cardImage"> <img src="media/index/nodejs.svg" alt="" /> </div> </div> <div class="cardText"> <h3>Get started with Service Bus queues using Node.js</h3> </div> </div> </div> </div> </a> </li> <li> <a href="/azure/service-bus-messaging/service-bus-php-how-to-use-queues"> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardImageOuter"> <div class="cardImage"> <img src="media/index/get-started.svg" alt="" /> </div> </div> <div class="cardText"> <h3>Get started with Service Bus queues using PHP</h3> </div> </div> </div> </div> </a> </li> <li> <a href="/azure/service-bus-messaging/service-bus-python-how-to-use-queues"> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardImageOuter"> <div class="cardImage"> <img src="media/index/python.svg" alt="" /> </div> </div> <div class="cardText"> <h3>Get started with Service Bus queues using Python</h3> </div> </div> </div> </div> </a> </li> <li> <a href="/azure/service-bus-messaging/service-bus-ruby-how-to-use-queues"> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardImageOuter"> <div class="cardImage"> <img src="media/index/ruby.svg" alt="" /> </div> </div> <div class="cardText"> <h3>Get started with Service Bus queues using Ruby</h3> </div> </div> </div> </div> </a> </li> <li> <a href="/azure/service-bus-messaging/service-bus-brokered-tutorial-rest"> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardImageOuter"> <div class="cardImage"> <img src="media/index/rest.svg" alt="" /> </div> </div> <div class="cardText"> <h3>Get started with Service Bus queues using REST</h3> </div> </div> </div> </div> </a> </li> </ul> --- <h2>Reference</h2> <ul class="panelContent cardsW"> <li> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardText"> <h3>Command-Line</h3> <p><a href="/powershell/resourcemanager">PowerShell</a></p> </div> </div> </div> </div> </li> <li> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardText"> <h3>REST</h3> <p><a href="/rest/api/servicebus">REST API Reference</a></p> </div> </div> </div> </div> </li> <li> <div class="cardSize"> <div class="cardPadding"> <div class="card"> <div class="cardText"> <h3>Other</h3> <p><a href="/dotnet/api/">Managed Reference API</a></p> </div> </div> </div> </div> </li> </ul> <div class="downloadHolder"> <a href="https://opbuildstorageprod.blob.core.windows.net/output-pdf-files/en-us/Azure.azure-documents/live/service-bus.pdf"> <div class="img"></div> <div class="text"> Download Service Bus Documentation </div> </a> </div>
35.227273
211
0.417595
eng_Latn
0.105369
d9df6be1cd2d76e35aa6348885023e430e6685af
206
md
Markdown
src/__tests__/fixtures/unfoldingWord/en_tq/exo/16/04.md
unfoldingWord/content-checker
7b4ca10b94b834d2795ec46c243318089cc9110e
[ "MIT" ]
null
null
null
src/__tests__/fixtures/unfoldingWord/en_tq/exo/16/04.md
unfoldingWord/content-checker
7b4ca10b94b834d2795ec46c243318089cc9110e
[ "MIT" ]
226
2020-09-09T21:56:14.000Z
2022-03-26T18:09:53.000Z
src/__tests__/fixtures/unfoldingWord/en_tq/exo/16/04.md
unfoldingWord/content-checker
7b4ca10b94b834d2795ec46c243318089cc9110e
[ "MIT" ]
1
2022-01-10T21:47:07.000Z
2022-01-10T21:47:07.000Z
# Why will the people go out and gather a day’s portion every day? The people will go out and gather a day’s portion every day so that Yahweh may test them to see whether or not they will walk in his law.
51.5
137
0.762136
eng_Latn
1.000009
d9dfc3b191ae7e4569537c84d9d91453377e9f32
6,717
md
Markdown
docs/develop.md
unixhot/opsany-bastion
2d40b315220cb01c599ae252c7b41aa242f5a6f4
[ "Apache-2.0" ]
8
2021-12-23T03:33:10.000Z
2022-03-29T03:29:01.000Z
docs/develop.md
unixhot/opsany-bastion
2d40b315220cb01c599ae252c7b41aa242f5a6f4
[ "Apache-2.0" ]
null
null
null
docs/develop.md
unixhot/opsany-bastion
2d40b315220cb01c599ae252c7b41aa242f5a6f4
[ "Apache-2.0" ]
6
2021-12-23T03:33:05.000Z
2022-03-03T11:11:23.000Z
## 开发环境部署方法: - 环境: - CentOS 7 - Python 3.6.8 - Supervisord 3.4.0 - 安装部署: - 将项目文件放置在`/opt/bastion/` - 安装相应依赖 ``` [root@opsany ~]# cd /opt/ [root@opsany opt]# mkdir bastion-runtime [root@opsany bastion-runtime]# python3 -m venv /opt/bastion-runtime/ [root@opsany bastion-runtime]# source bin/activate (bastion-runtime) [root@opsany opt]# pip install -r /opt/bastion-backend/requirements.txt ``` - 书写Supervisord配置文件: - supervisord.conf: ``` [program: bastion_uwsgi] command = /opt/bastion-runtime/bin/uwsgi --ini /opt/bastion/bastion.ini stdout_logfile = /opt/bastion/logs/uwsgi.log redirect_stderr = true autorestart = true stopsignal = QUIT environment = BK_ENV="production",BK_LOG_DIR="/opt/bastion/logs/",BK_PAAS_INNER_HOST="http://",APP_ID="bastion",BK_PAAS_HOST="https://",APP_TOKEN="",BK_CC_HOST="https://",BK_JOB_HOST="https://" ``` - bastion.ini: ``` logdate = true log-format = [%(addr)] [%(ctime)] [%(method)] [%(uri)] [%(proto)] [%(status)] [%(msecs)] [%(referer)] [%(uagent)] memory-report = true master = true vacuum = true chdir = /opt/bastion/bastion-backend module = wsgi:application #cheaper = 4 #cheaper-initial = 4 #workers = 4 processes = 4 threads = 2 #cheaper-algo = busyness #cheaper-overload = 5 #cheaper-step = 2 #cheaper-busyness-multiplier = 60 #buffer-size = 8192 #post-buffering = 8192 max-requests = 1024 mount = /t/bastion=wsgi.py manage-script-name = true ``` - websocket.ini: ``` [program:websocket] command=/opt/bastion-runtime/bin/daphne --proxy-headers -b 0.0.0.0 -p 8004 asgi:application directory=/opt/bastion/bastion-backend environment=BK_ENV="production",BK_LOG_DIR="/opt/opsany/logs",APP_ID="bastion",BK_PAAS_HOST="https://",APP_TOKEN="" startsecs=0 stopwaitsecs=0 autostart=true autorestart=true redirect_stderr=true stdout_logfile=/opt/bastion/logs/websocket.log ``` - 声明:需要补齐APP_TOKEN,BK_PAAS_HOST,或使用PaaS部署,即可忽略uwsgi的supervisord配置,仅需配置websocket的内容即可 - 启动: ``` [root@opsany bastion]# supervisorctl reload ``` #### 目录结构 - 本项目基于蓝鲸SaaS开发框架进行开发,框架代码内容概不介绍,仅介绍本项目所用内容 ``` ├── bastion # 主要业务逻辑代码目录 │   ├── admin.py │   ├── apps.py │   ├── audit # 审计类API目录 │   │   ├── audit_views.py │   │   └── __init__.py │   ├── component # 业务组件目录 │   │   ├── audit.py │   │   ├── common.py │   │   ├── core.py │   │   ├── credential.py │   │   ├── __init__.py │   │   ├── resource.py │   │   ├── strategy.py │   │   └── strategy_v2.py │   ├── core # 堡垒机核心组件 │   │   ├── consumers.py │   │   ├── guacamole │   │   │   ├── client.py │   │   │   ├── component.py │   │   │   ├── exceptions.py │   │   │   ├── __init__.py │   │   │   └── instruction.py │   │   ├── __init__.py │   │   ├── status_code.py │   │   ├── terminal │   │   │   ├── component.py │   │   │   └── __init__.py │   │   └── views.py │   ├── credential # 凭证类API目录 │   │   ├── credential_views.py │   │   └── __init__.py │   ├── forms # form表单目录 │   │   ├── core_form.py │   │   ├── forms.py │   │   ├── __init__.py │   │   ├── strategy_from.py │   │   └── strategy_v2_form.py │   ├── __init__.py │   ├── migrations │   │   ├── 0001_initial.py │   │   └── __init__.py │   ├── models.py # 项目模型 │   ├── resource # 资源类API目录 │   │   ├── __init__.py │   │   └── resource_views.py │   ├── routing.py # Webscocket路由文件 │   ├── strategy # 策略类API目录 │   │   ├── __init__.py │   │   ├── views.py │   │   └── views_v2.py │   ├── tests.py │   ├── urls.py # 基础路由文件 │   ├── utils # 常用工具目录 │   │   ├── base_model.py │   │   ├── base_views.py │   │   ├── constants.py │   │   ├── decorator.py │   │   ├── encryption.py │   │   ├── esb_api.py │   │   ├── __init__.py │   │   ├── init_script.py │   │   ├── middleware.py │   │   └── status_code.py │   └── views.py ├── config # 项目配置文件目录 │   ├── default.py │   ├── dev.py │   ├── __init__.py │   ├── prod.py │   └── stag.py ├── index # 调取前端入口html APP │   ├── admin.py │   ├── apps.py │   ├── __init__.py │   ├── migrations │   │   └── __init__.py │   ├── models.py │   ├── tests.py │   ├── urls.py │   └── views.py ├── manage.py ├── README.md ├── requirements.txt ├── runtime.txt ├── app.yml ├── asgi.py ├── settings.py ├── static ├── templates │   └── index.html ├── urls.py ├── VERSION └── wsgi.py ``` #### 堡垒机前端工程 - 安装依赖 ``` npm i ``` - 启动本地服务 ``` npm run serve ``` - 打包 ``` npm run build ``` - 目录结构 ``` ├── public │ └── logo.png # LOGO | └── index.html # Vue 入口模板 | └── css # 静态css | └── js # 静态js ├── src │ ├── api # Api ajax 等 │ ├── assets # 本地静态资源 │ ├── config # 项目基础配置,包含路由,全局设置 │ ├── components # 业务通用组件 │ ├── core # 项目引导, 全局配置初始化,依赖包引入等 │ ├── router # Vue-Router │ ├── store # Vuex │ ├── utils # 工具库 │ ├── locales # 国际化资源 项目中暂时没有用到 │ ├── views # 业务页面入口和常用模板 │ ├── App.vue # Vue 模板入口 │ └── main.js # Vue 入口 JS │ └── permission.js # 路由守卫(路由权限控制) │ └── global.less # 全局样式 ├── tests # 测试工具 ├── README.md └── package.json └── vue.config.js ``` - ESB组件的添加: - 修改ESB配置文件: ``` # 修改DOMAIN 将 install/bastion_esb/bastion/toolkit/configs.py line10处,修改成正确的DOMAIN ``` - 将组件移动至目标路径: ``` # 在项目的install/bastion_esb/下有一个bastion目录 mv bastion/ PAAS_INSTALL_PATH/esb/components/generic/apis/ ``` - 页面创建系统,添加组件: ``` 打开:http://{DOMAIN}/esb/manager/system/list/,点击添加系统 系统名称:BASTION 系统标签:OpsAny堡垒机 文档分类:默认分类 打开:http://{DOMAIN}/esb/manager/channel/list/,点击添加通道 通道名称:获取堡垒机登录用Token 通道路径:/bastion/get_cache_token/ 所属系统:[BASTION]OpsAny堡垒机 对应组件代号:generic.bastion.get_cache_token API类型:执行API ``` - 创建ESB组件文档,并重启ESB: ``` # 创建组件文档 source /root/.bkrc source $CTRL_DIR/functions export BK_ENV=production export BK_FILE_PATH=/data/bkce/open_paas/cert/saas_priv.txt export PAAS_LOGGING_DIR=/data/bkce/logs/open_paas workon open_paas-esb python manage.py sync_api_docs # 重启ESB systemctl restart bk-paas-esb.service ```
23.162069
199
0.516153
kor_Hang
0.215217
d9dfe6fc2b89fe0558a2158d59886b5b34ba2d3e
1,697
md
Markdown
README.md
marukun318/XBOXInputController
68d45ad13c2ffc4befe789f3f0d3f84128abc645
[ "CC0-1.0" ]
2
2019-04-04T12:04:23.000Z
2019-04-14T23:02:08.000Z
README.md
marukun700/XBOXInputController
68d45ad13c2ffc4befe789f3f0d3f84128abc645
[ "CC0-1.0" ]
null
null
null
README.md
marukun700/XBOXInputController
68d45ad13c2ffc4befe789f3f0d3f84128abc645
[ "CC0-1.0" ]
1
2020-06-01T18:25:12.000Z
2020-06-01T18:25:12.000Z
<!-- XBOXInputController README.md --> # XBOXInputController Unity Project Template For Unity 2018 XBOXInputController code by Marukun. Current Unity Version: 2018.4.3f1. Specifically, please visit here. Marukun: [https://twitter.com/marukun/](https://twitter.com/marukun/) To build this project, Please use Unity 2018.4.x or later. --- ## First Release (2019/04/04) This project is to make XBOX 360 / XBOX One controller usable in common with Windows, OSX and Linux. If you can share this result, your Unity development efficiency will also increase. It's still in development, so if you have a bug or lack of support, we'll be waiting for your pull request. --- ## Reference Pages [360Controller (macOS Driver)](https://github.com/360Controller/360Controller/releases) --- [Xbox360Controller](http://wiki.unity3d.com/index.php/Xbox360Controller) [蒼玉亭 - UnityでXboxOneコントローラを使う…前に](http://aodamatei.sakura.ne.jp/2016/06/unity%E3%81%A7xboxone%E3%82%B3%E3%83%B3%E3%83%88%E3%83%AD%E3%83%BC%E3%83%A9%E3%82%92%E4%BD%BF%E3%81%86%E5%89%8D%E3%81%AB/) [ゲームパッドでUnityのゲームを動かそう](http://inter-high-blog.unity3d.jp/2017/07/04/gamepad/) [◇Unityでゲーム開発 -左右スティックを使う方法-](http://yun.cup.com/unity041.html) [Unityでゲームパッドからの入力したいからまとめてみる(XBox One Controller)](https://hakonebox.hatenablog.com/entry/2018/04/15/125152) [XBOX360コントローラを使う](http://unitygeek.hatenablog.com/entry/2012/08/11/164525) [ゲーム機のコントローラー、Mac・Windowsで使うには?](https://www.gizmodo.jp/2019/03/how-to-use-game-controller-on-mac-win.html) --- ## License These codes are licensed under CC0. [![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png "CC0")](http://creativecommons.org/publicdomain/zero/1.0/deed.ja)
37.711111
196
0.747201
yue_Hant
0.311288
d9e01112fb943dd5c108ff79024ff36b2e8693de
13,986
md
Markdown
README.md
UMD-ARLIS/tika-document-ingest
3f26329c3660948b9a2b89c305743f99e0e5386b
[ "MIT" ]
null
null
null
README.md
UMD-ARLIS/tika-document-ingest
3f26329c3660948b9a2b89c305743f99e0e5386b
[ "MIT" ]
6
2022-03-16T18:57:18.000Z
2022-03-25T19:03:55.000Z
README.md
UMD-ARLIS/tika-document-ingest
3f26329c3660948b9a2b89c305743f99e0e5386b
[ "MIT" ]
1
2022-03-15T18:06:16.000Z
2022-03-15T18:06:16.000Z
# RECOMBINANT INGEST PIPELINE (USING NIFI + ELK) Objective: Develop highly modular, reconfigurable document ingest pipelines that accelerate prototype and development of extraction and triage capabilities. ## QUICKSTART GUIDE This section will allow a user to run the entire pipeline, once they have successfully installed and set up their environments per the NIFI INSTALLATION and ELK INSTALLATION guides. If a user needs to access the pipeline on a "run and go" basis, this QUICKSTART GUIDE is how a user will do so. #### ACCESS NIFI 1. Access the nifi-1.14.0-bin.zip folder on your machine. Navigate to the bin folder. Within this folder, run the file titled "run-nifi". You may be presented with a security warning, this is okay - run the file. Also, a command prompt window housing text will likely present itself, this is also okay - minimize and ignore this screen. 2. Copy and paste this link https://localhost:8443/nifi/ into the URL section of your preferred web browser. If you are shown a "Your connection is not private" or akin message due to the lack of the webpage being HTTPS, this is expected - access the webpage anyways. 3. After waiting for your NIFI instance to boot, you will be asked to log in with your credentials. Enter your saved username and password and press "Log In". 4. Once you are successfully logged into NIFI, you now have full access to the platform. #### ACCESS ELK 1. In Docker Desktop: A. Open Docker Desktop, navigate to the containers/apps section, and press “start” on the “docker security tweaks” container. B. Once it is running, you can access elasticsearch by pasting the URL http://localhost:5601 into your web browser. 2. In Command Line: A. Navigate to the "docker-compose.yml" file inside of the "docker-elk-security-tweaks" folder. B. Right-click in the folder and click "Open in Windows Terminal". C. Use the "docker compose up" command in your terminal to start an instance of ELK stack. ``` docker compose up ``` D. Once it is running, you can access elasticsearch by pasting the URL http://localhost:5601 into your web browser. ## TABLE OF CONTENTS 1. [NIFI Installation](#nifi_installation) A. [Install NIFI](#install_nifi) B. [Install Prerequisite NAR File](#install_prerequisite_nar_file) C. [Start NIFI](#start_nifi) D. [Username and Password](#username_and_password) E. [Install Template](#install_template) F. [Set Up Data to Ingest](#set_up_data_to_ingest) G. [Run The Template](#run_the_template) H. [NIFI User Guide](#nifi_user_guide) 2. [ELK Stack Installation](#elk_stack_installation) A. [Notes](#notes) B. [Download ELK Stack](#download_elk_stack) C. [Run Instance Of ELK Stack](#run_instance_of_elk_stack) D. [Access ELK Stack](#access_elk_stack) E. [Setup Instance Of ELK Stack](#setup_instance_of_elk_stack) F. [View Data In Kibana](#view_data_in_kibana) <a name="nifi_installation"></a> ## NIFI INSTALLATION <a name="install_nifi"></a> #### INSTALL NIFI 1. Before beginning, make sure your device has JDK 8 installed and operational <img src="resources/nifi_java.png" width="300"/> 2. Go to the official website https://nifi.apache.org/download.html and navigate from releases > 1.14.0 > binaries > nifi-1.14.0-bin.zip file and begin downloading. Our platform was created with the version 1.14.0 release. <img src="resources/nifi_version.png" width="300"/> 3. Unzip and extract the contents and this is how the folder structure will be in your system file explorer tool. The folder should contain bin, conf, docs, extensions, lib, license, notice, and readme. <img src="resources/nifi_folder.png"/> <a name="install_prerequisite_nar_file"></a> #### INSTALL PREREQUISITE NAR FILE 1. After you have installed NiFi, you have one more task - and that is to install our prerequisite processor. To do this, download the “nifi-extracttext-nar-1.5.nar” file from our repository onto your system. ![alt text](resources/nifi_pre_nar_file.png) 2. Once downloaded, navigate to the nifi-1.14.0 folder you extracted the content of earlier when it was a .zip file. Once inside this folder, go to the “lib” folder (short for library). This folder houses NiFi’s NAR files which are used to create processors within the app. ![alt text](resources/nifi_lib_folder.png) 3. Once inside the nifi-1.14.0 -> lib folder, move the nar file you downloaded here. You may have to restart your computer to allow NiFi to update and register the processor. ![alt text](resources/nifi_move_nar_file.png) <a name="start_nifi"></a> #### START NIFI 1. To start the NiFi, you can directly double-click on the “run-nifi.bat” file in the nifi-1.14.0 -> bin folder. ![alt text](resources/nifi_run_nifi_bat.png) 2. If the command line produces a process ID, then your NiFi instance is running. <img src="resources/nifi_command_line.png" width="600"/> 3. Go to the following URL – https://localhost:8443/nifi/ to check if NiFi has started. Don’t worry if this URL is not loading instantly. NiFi takes time after starting, just check periodically every few minutes. ![alt text](resources/nifi_access_url.png) The picture above shows the URL in Google Chrome. 4. If you see a warning message stating that “Your connection is not private” in the URL, click on “Advanced” and then click on “Proceed to localhost(unsafe)”. This message might appear due to the lack of the webpage being HTTPS, this is expected - access the webpage anyways. <a name="username_and_password"></a> #### USERNAME AND PASSWORD 1. You should now be approached by a login page asking for your username and password. This information can be found within the “nifi-app.log” file in the nifi-1.14.0 -> logs folder. <img src="resources/nifi_username_password.png" width="350"/> 2. Open the “nifi-app.log” file and use Ctrl+F to search for the keywords “username” or “password”. Once you have these credentials, go to the URL where NiFi is running and log in. ![alt text](resources/nifi_nifi_app_log_file.png) 3. Save your username and password in a secure place so you have convenient access to them. <a name="install_template"></a> #### INSTALL TEMPLATE 1. Once you are logged into the NiFi page, you should see a blank canvas. If not, this is okay. Holding down the shift key, use the mouse to select the canvas you see. Then, once the canvas is selected, right-click your mouse while the cursor is on the template and press “delete”. Make sure your canvas is clear before proceeding. <img src="resources/nifi_delete_canvas.png" width="450"/> 2. From our repository, use the "NiFi_Template_Final.xml" file. 3. Navigate back to the NiFi page and right-click an empty space on the canvas. In the dropdown, click “Upload Template” and then click “Select Template” on the popup screen. Choose the "NiFi_Template_Final.xml" file you have downloaded and click "Upload". <img src="resources/nifi_upload_template.png" width="200"/> <img src="resources/nifi_upload_template_popup.png" width="200"/> 4. Once the template is successfully imported, you can drag the "Template" button at the top bar into the blank canvas and let go. This will show a popup screen where you can choose a template. Select the "NiFi Template Final" template and click "Add". <img src="resources/nifi_add_template.png" width="250"/> <a name="set_up_data_to_ingest"></a> #### SET UP DATA TO INGEST 1. In order to run the template, you will first need to create a new folder on your computer containing the various files you would like NIFI to ingest. An example of this is the folder called “nifi input” I created on my system. This folder can contain any file type, just make sure it has all of the files that you would like NIFI to take in. Also, it is important to note that any files in this folder **WILL BE DELETED** when Nifi is run. The location of this folder on my system is “C:\Users\Kymani\Documents\nifi input”. ![alt text](resources/nifi_nifi_input_folder.png) 2. After you have created a folder on your system and put in the files you would like NIFI to ingest, go back to the NIFI app on your browser. ![alt text](resources/nifi_inside_nifi_input_folder.png) 3. Once in the NIFI app, double click the processor group called “Get File & Convert to JSON” to open it. Once here, double-click the “GetFile” processor. After this, navigate to the “properties” tab. ![alt text](resources/nifi_properties.png) 4. From here, you should see a property titled “Input Directory”. In the space next to it labeled “Value”, simply paste the EXACT file path of the folder containing your files you would like NIFI to ingest, with an example file path being “C:\Users\Kymani\Documents\nifi input” and press OK to close the processor. Then press "Apply" to save the the file path. <img src="resources/nifi_file_path.png" width="350"/> <img src="resources/nifi_save_file_path.png" width="500"/> <a name="run_the_template"></a> #### RUN THE TEMPLATE **Note: Make sure that you have a backup of the files in your input folder. Each NiFi run *WILL DELETE ALL FILES* in the input folder you created.** 1. Now you are all set! Now, to run NIFI and all of the processor groups. If you would like to run NiFi and all of its processors we have created, look at the bottom left of your NIFI app inside of the static solid white/gray colored bar. Make sure you are on the NIFI FLOW page and not inside of any of the processor groups. An easy way to confirm this is to look at your canvas, you should see all three processor groups, if you do then proceed. If you do not, simply press the NiFi FLOW text at the bottom of the screen and you will be navigated to the main page showing all of the processors. <img src="resources/nifi_nifi_flow.png" width="500"/> 2. After confirming you are on the main page showing all three processor groups, simply right-click your mouse on a black space of the canvas and press “Start” and NIFI will begin running the processes. In order for the pipeline to run correctly, make sure you have ELASTICSEARCH accessible and DOCKER running. Note: To watch your files populate in real time, right click on the canvas and press "Refresh". <img src="resources/nifi_run_flow.png" width="500"/> The input folder for this run (screenshot) contained 1,040 files. <a name="nifi_user_guide"></a> #### NIFI USER-GUIDE 1. Please refer to this link https://nifi.apache.org/docs/nifi-docs/html/user-guide.html to discover the various ways you can use nifi. <a name="elk_stack_installation"></a> ## ELK INSTALLATION <a name="notes"></a> #### NOTES 1. "ELK" stands for ElasticSearch, LogStash, and Kibana / ElatisSearch = Data Store | LogStash = ? | Kibana = Data Visualization 2. Prerequisites for properly utilizing this stack is having Docker Desktop up and running on your system. Once you use the “docker compose up” command from your cmd prompt, the Docker Dekstop application will populate itself with the security tweaks files. <a name="download_elk_stack"></a> #### DOWNLOAD ELK STACK 1. Download the "security-tweaks" branch of this docker-ELK fork: https://github.com/UMD-ARLIS/docker-elk <img src="resources/elk_stack_github.png" width="500"/> 2. Extract the "docker-elk-security-tweaks" folder <img src="resources/elk_stack_extract.png" width="380"/> <a name="run_instance_of_elk_stack"></a> #### RUN INSTANCE OF ELK STACK 1. Navigate to the "docker-compose.yml" file inside of the extracted folder <img src="resources/elk_stack_docker_compose_yml.png" width="400"/> 2. Right-click in the folder and click "Open in Windows Terminal" <img src="resources/elk_stack_windows_terminal.png" width="400"/> 3. Use the "docker compose up" command in your terminal to start an instance of ELK stack ``` docker compose up ``` <a name="access_elk_stack"></a> #### ACCESS ELK STACK 1. Once ELK stack is running successfully, run the workflow in Nifi which will send the data to ElasticSearch. 2. Access ELK stack through a browser (Microsoft Edge works well) using http://localhost:5601 and click on the three horizontal lines at the top left <img src="resources/elk_stack_access_elk.png" width="350"/> <a name="setup_instance_of_elk_stack"></a> #### SETUP INSTANCE OF ELK STACK 1. Once inside ELK stack, scroll down to the "Management" section and click on "Stack Management" <img src="resources/elk_stack_management.png" width="150"/> 2. Near the left edge of the page, click on "Index Patterns" under "Kibana" <img src="resources/elk_stack_index_patterns.png" width="130"/> 3. Click on the blue "Create index pattern" button <img src="resources/elk_stack_create_index_patterns.png" width="700"/> 4. Type "tikac*" into the box for "Index pattern name" and click "Next step" <img src="resources/elk_stack_create_tikac.png" width="550"/> 5. Click "file.lastAccessTime" for the "Time field" box and click "Create index pattern" <img src="resources/elk_stack_select_time_field.png" width="550"/> 6. Repeat steps 8 to 11, using "tikam*" for the "Index pattern name" box in step 10 <img src="resources/elk_stack_create_tikam.png" width="550"/> <a name="view_data_in_kibana"></a> #### VIEW DATA IN KIBANA 1. Click on the three horizontal lines at the top left and click on "Discover" under the "Analytics" section <img src="resources/elk_stack_discover.png" width="200"/> 2. Change between the index patterns "tikac*" and "tikam*" by clicking on the index pattern dropdown above the field names near the left edge <img src="resources/elk_stack_select_tikac.png" width="220"/> 3. View the data within a specific range of time by filtering the time at the top right or by clicking on the green bars of data <img src="resources/elk_stack_view_data.png" width="500"/>
50.129032
597
0.744387
eng_Latn
0.970098
d9e07dfd660d2738234d2cdfe7445e3b60eedd8a
66
md
Markdown
doc/packages/harmoni_gesture.md
interaction-lab/HARMONI
9c88019601a983a1739744919a95247a997d3bb1
[ "MIT" ]
7
2020-09-02T06:31:21.000Z
2022-02-18T21:16:44.000Z
doc/packages/harmoni_gesture.md
micolspitale93/HARMONI
cf6a13fb85e3efb4e421dbfd4555359c0a04acaa
[ "MIT" ]
61
2020-05-15T16:46:32.000Z
2021-07-28T17:44:49.000Z
doc/packages/harmoni_gesture.md
micolspitale93/HARMONI
cf6a13fb85e3efb4e421dbfd4555359c0a04acaa
[ "MIT" ]
3
2020-10-05T23:01:29.000Z
2022-03-02T11:53:34.000Z
```{include} ../../harmoni_actuators/harmoni_gesture/README.md ```
33
62
0.712121
eng_Latn
0.598603
d9e10bc4b2d77c88b519f5665f6d0c9b7cdf38e2
11,633
md
Markdown
articles/active-directory/saas-apps/cloud-academy-sso-tutorial.md
Aisark/azure-docs.es-es
5078f9c88984709a7ffdfce8baab7cfbf42674c9
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/active-directory/saas-apps/cloud-academy-sso-tutorial.md
Aisark/azure-docs.es-es
5078f9c88984709a7ffdfce8baab7cfbf42674c9
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/active-directory/saas-apps/cloud-academy-sso-tutorial.md
Aisark/azure-docs.es-es
5078f9c88984709a7ffdfce8baab7cfbf42674c9
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: 'Tutorial: Integración del inicio de sesión único de Azure Active Directory con Cloud Academy - SSO' description: En este tutorial, aprenderá a configurar el inicio de sesión único entre Azure Active Directory y Cloud Academy - SSO. services: active-directory author: jeevansd manager: CelesteDG ms.reviewer: celested ms.service: active-directory ms.subservice: saas-app-tutorial ms.workload: identity ms.topic: tutorial ms.date: 12/15/2020 ms.author: jeedes ms.openlocfilehash: 96c4eba31013b868fa7afb41544d5d8cbcc1cdc6 ms.sourcegitcommit: e15c0bc8c63ab3b696e9e32999ef0abc694c7c41 ms.translationtype: HT ms.contentlocale: es-ES ms.lasthandoff: 12/16/2020 ms.locfileid: "97607225" --- # <a name="tutorial-azure-active-directory-single-sign-on-integration-with-cloud-academy---sso"></a>Tutorial: Integración del inicio de sesión único de Azure Active Directory con Cloud Academy - SSO En este tutorial aprenderá a integrar Cloud Academy - SSO con Azure Active Directory (Azure AD). Al integrar Cloud Academy - SSO con Azure AD, puede hacer lo siguiente: * Usar Azure AD para controlar quién puede acceder a Cloud Academy - SSO. * Permitir que los usuarios inicien sesión automáticamente en Cloud Academy - SSO con sus cuentas de Azure AD. * Administrar sus cuentas en una ubicación central: Azure Portal. ## <a name="prerequisites"></a>Requisitos previos Para empezar, necesita los siguientes elementos: * Una suscripción de Azure AD. Si no tiene una suscripción, puede crear una [cuenta gratuita](https://azure.microsoft.com/free/). * Una suscripción habilitada para el inicio de sesión único (SSO) en Cloud Academy - SSO. ## <a name="tutorial-description"></a>Descripción del tutorial En este tutorial, va a configurar y probar el inicio de sesión único de Azure AD en un entorno de prueba. * Cloud Academy - SSO admite el inicio de sesión único iniciado por **SP** * Cloud Academy - SSO admite el aprovisionamiento de usuarios **Just-In-Time**. ## <a name="add-cloud-academy---sso-from-the-gallery"></a>Adición de Cloud Academy - SSO desde la galería Para configurar la integración de Cloud Academy - SSO en Azure AD, es preciso agregar Cloud Academy - SSO desde la galería a la lista de aplicaciones SaaS administradas: 1. Inicie sesión en Azure Portal con una cuenta profesional o educativa o con una cuenta Microsoft personal. 1. En el panel izquierdo, seleccione **Azure Active Directory**. 1. Vaya a **Aplicaciones empresariales** y seleccione **Todas las aplicaciones**. 1. Para agregar una aplicación, seleccione **Nueva aplicación**. 1. En la sección **Agregar desde la galería**, escriba **Cloud Academy - SSO** en el cuadro de búsqueda. 1. Seleccione **Cloud Academy - SSO** en el panel de resultados y, a continuación, agregue la aplicación. Espere unos segundos mientras la aplicación se agrega al inquilino. ## <a name="configure-and-test-azure-ad-sso-for-cloud-academy---sso"></a>Configuración y prueba del inicio de sesión único de Azure AD SSO para Cloud Academy - SSO Configure y pruebe el inicio de sesión único de Azure AD con Cloud Academy - SSO mediante un usuario de prueba llamado **B.Simon**. Para que el inicio de sesión único funcione, es necesario establecer una relación de vinculación entre un usuario de Azure AD y el usuario correspondiente de Cloud Academy - SSO. Para configurar y probar el inicio de sesión único de Azure AD con Cloud Academy - SSO, complete los siguientes pasos generales: 1. **[Configuración del inicio de sesión único de Azure AD](#configure-azure-ad-sso)** , para que los usuarios puedan utilizar esta característica. 1. **[Creación de un usuario de prueba de Azure AD](#create-an-azure-ad-test-user)** para probar el inicio de sesión único de Azure AD. 1. **[Concesión de acceso al usuario de prueba](#grant-access-to-the-test-user)** , para que el usuario pueda usar el inicio de sesión único de Azure AD. 1. **[Configuración del inicio de sesión único para Cloud Academy - SSO](#configure-single-sign-on-for-cloud-academy)** en la aplicación. 1. **[Creación de un usuario de prueba de Cloud Academy - SSO](#create-a-cloud-academy-test-user)** como homólogo de la representación del usuario en Azure AD. 1. **[Prueba del inicio de sesión único](#test-sso)** para comprobar que la configuración funciona. ## <a name="configure-azure-ad-sso"></a>Configuración del inicio de sesión único de Azure AD Siga estos pasos para habilitar el inicio de sesión único de Azure AD en Azure Portal: 1. En Azure Portal, en la página de integración de la aplicación **Cloud Academy - SSO**, busque la sección **Administrar** y seleccione **Inicio de sesión único**. 1. En la página **Seleccione un método de inicio de sesión único**, elija **SAML**. 1. En la página **Configuración del inicio de sesión único con SAML**, seleccione el botón de lápiz para **Configuración básica de SAML** para editar la configuración: ![Captura de pantalla que muestra el botón de lápiz para editar la configuración básica de SAML.](common/edit-urls.png) 1. En la sección **Configuración básica de SAML**, siga estos pasos: a. En el cuadro de texto **URL de inicio de sesión**, escriba una de las siguientes direcciones URL: | URL de inicio de sesión | |--------------| | `https://cloudacademy.com/login/enterprise/` | | `https://app.qa.com/login/enterprise/` | | b. En el cuadro de texto **URL de respuesta**, escriba una de las siguientes direcciones URL: | URL de respuesta | |--------------| | `https://cloudacademy.com/labs/social/complete/saml/` | | `https://app.qa.com/labs/social/complete/saml/` | | 1. En la página **Configuración del inicio de sesión único con SAML**, en la sección **Certificado de firma de SAML**, seleccione el botón de copia para copiar la **Dirección URL de metadatos de federación de aplicación**. Guarde la dirección URL. ![Captura de pantalla del botón de copia para el campo Dirección URL de metadatos de federación de aplicación.](common/copy-metadataurl.png) ### <a name="create-an-azure-ad-test-user"></a>Creación de un usuario de prueba de Azure AD En esta sección, se crea un usuario llamado B.Simon en Azure Portal. 1. En el panel izquierdo de Azure Portal, seleccione **Azure Active Directory**. Seleccione **Usuarios** y, a continuación, seleccione **Todos los usuarios**. 1. Seleccione **Nuevo usuario** en la parte superior de la pantalla. 1. En las propiedades de **usuario**, realice estos pasos: 1. En el cuadro **Nombre**, escriba **B.Simon**. 1. En el cuadro **Nombre de usuario**, escriba \<username>@\<companydomain>.\<extension>. Por ejemplo, `B.Simon@contoso.com`. 1. Seleccione **Mostrar contraseña** y, a continuación, anote el valor que se muestra en el cuadro **Contraseña**. 1. Seleccione **Crear**. ### <a name="grant-access-to-the-test-user"></a>Concesión de acceso al usuario de prueba En esta sección, va a permitir que B.Simon acceda a Cloud Academy - SSO mediante el inicio de sesión único de Azure. 1. En Azure Portal, seleccione **Aplicaciones empresariales** y, a continuación, seleccione **Todas las aplicaciones**. 1. En la lista de aplicaciones, seleccione **Cloud Academy - SSO**. 1. En la sección **Administrar** de la página de información general de la aplicación, seleccione **Usuarios y grupos**: 1. Seleccione **Agregar usuario** y, a continuación, seleccione **Usuarios y grupos** en el cuadro de diálogo **Agregar asignación**: 1. En el cuadro de diálogo **Usuarios y grupos**, seleccione **B.Simon** en la lista **Usuarios** y haga clic en el botón **Seleccionar** en la parte inferior de la pantalla. 1. Si espera que se asigne un rol a los usuarios, puede seleccionarlo en la lista desplegable **Seleccionar un rol**. Si no se ha configurado ningún rol para esta aplicación, verá seleccionado el rol "Acceso predeterminado". 1. En el cuadro de diálogo **Agregar asignación**, seleccione **Asignar**. ## <a name="configure-single-sign-on-for-cloud-academy"></a>Configuración del inicio de sesión único para Cloud Academy 1. En otra ventana del explorador, inicie sesión en el sitio de la compañía de Cloud Academy - SSO como administrador. 1. Seleccione el nombre de la compañía y, a continuación, seleccione **Settings & Integrations** (Configuración e integraciones) en el menú que aparece: ![Captura de pantalla que muestra la opción Configuración e integraciones.](./media/cloud-academy-sso-tutorial/config-1.PNG) 1. En la página **Settings & integraciones** (Configuración e integraciones), en la pestaña **Integrations** (Integraciones), seleccione la tarjeta **SSO**: ![Captura de pantalla que muestra la tarjeta SSO en la pestaña de integraciones.](./media/cloud-academy-sso-tutorial/config-2.PNG) 1. Realice los pasos siguientes en esta página: ![Captura de pantalla que muestra la página SSO en Integraciones.](./media/cloud-academy-sso-tutorial/config-3.PNG) a. En el cuadro **Entity ID URL** (Dirección URL del identificador de entidad), escriba el valor del identificador de entidad que copió de Azure Portal. b. En el cuadro **SSO URL** (Dirección URL de inicio de sesión único), pegue la dirección URL de inicio de sesión que copió de Azure Portal. c. Abra el certificado Base 64 descargado desde Azure Portal en el Bloc de notas. Pegue su contenido en el cuadro **Certificate** (Certificado). d. En el cuadro de texto **Name ID Format** (Formato del identificador de nombre), mantenga el valor predeterminado: `urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified`. 1. Seleccione **Guardar**. > [!NOTE] > Para más información sobre cómo configurar Cloud Academy - SSO, consulte [Configuración del inicio de sesión único](https://support.cloudacademy.com/hc/articles/360043908452-Setting-Up-Single-Sign-On). ### <a name="create-a-cloud-academy-test-user"></a>Creación de un usuario de prueba de Cloud Academy En esta sección, se creará un usuario llamado a Britta Simon en Cloud Academy - SSO. Cloud Academy - SSO admite el aprovisionamiento de usuarios Just-In-Time, que está habilitado de forma predeterminada. No hay ningún elemento de acción para usted en esta sección. Si el usuario no existe aún en Cloud Academy SSO, se creará uno después de la autenticación. ## <a name="test-sso"></a>Prueba de SSO En esta sección, probará la configuración de inicio de sesión único de Azure AD con las siguientes opciones. * Haga clic en **Probar esta aplicación** en Azure Portal. Esta acción le redirigirá a la dirección URL de inicio de sesión de Cloud Academy - SSO, desde donde puede poner en marcha el flujo de inicio de sesión. * Acceda directamente a la URL de inicio de sesión de Cloud Academy - SSO y ponga en marcha el flujo de inicio de sesión desde ahí. * Puede usar Mis aplicaciones de Microsoft. Al hacer clic en el icono de Cloud Academy - SSO en Mis aplicaciones, se le redirigirá a la dirección URL de inicio de sesión de la aplicación. Para más información acerca de Aplicaciones, consulte [Inicio de sesión e inicio de aplicaciones desde el portal Aplicaciones](https://docs.microsoft.com/azure/active-directory/active-directory-saas-access-panel-introduction). ## <a name="next-steps"></a>Pasos siguientes Una vez haya configurado Cloud Academy - SSO, puede aplicar el control de sesión, que protege su organización en tiempo real frente a la filtración e infiltración de información confidencial. El control de sesión procede del acceso condicional. [Aprenda a aplicar el control de sesión con Microsoft Cloud App Security](https://docs.microsoft.com/cloud-app-security/proxy-deployment-any-app).
68.83432
414
0.755781
spa_Latn
0.971611
d9e1d8acb0a8fcbec7b1a3c415715b2b07fdfb98
689
md
Markdown
README.md
SunboX/ms-iot_DiscoLight
42fc420db119d43b3fc6cd96ea7e91ca4ec2c211
[ "MIT" ]
null
null
null
README.md
SunboX/ms-iot_DiscoLight
42fc420db119d43b3fc6cd96ea7e91ca4ec2c211
[ "MIT" ]
null
null
null
README.md
SunboX/ms-iot_DiscoLight
42fc420db119d43b3fc6cd96ea7e91ca4ec2c211
[ "MIT" ]
null
null
null
# "Disco Light" app for the Microsoft Windows 10 IoT Core This app was written using C#. It shows a solid color on the attached display. Also it provides a REST-ful API to change the color shown. The goal of this project is to put the image unit of a old used display infront of a normal ceiling lamp to dynamically change the light color and brightness. If you run this app on your Raspberry Pi 2, it will start up a web server listening on port `8081`. The default color is `White` and the current IP address, the server is listening to, is shown in the bottom right corner of the attached screen. To change the screens color, simply call: `http://YOUR_IP_ADRESS:8081/?color=0095DD`
62.636364
244
0.775036
eng_Latn
0.998684
d9e1e7786c6b0309759ad235f2682ec8db93cf56
1,861
md
Markdown
docs/analysis-services/instances/install-windows/deploying-sql-server-2016-powerpivot-and-power-view-in-sharepoint-2016.md
txstudio/sql-docs.zh-tw
2a3bec43c0a8e43d6159c4764aaa9c1507c1c3f8
[ "CC-BY-4.0", "MIT" ]
1
2020-08-13T04:23:30.000Z
2020-08-13T04:23:30.000Z
docs/analysis-services/instances/install-windows/deploying-sql-server-2016-powerpivot-and-power-view-in-sharepoint-2016.md
txstudio/sql-docs.zh-tw
2a3bec43c0a8e43d6159c4764aaa9c1507c1c3f8
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/analysis-services/instances/install-windows/deploying-sql-server-2016-powerpivot-and-power-view-in-sharepoint-2016.md
txstudio/sql-docs.zh-tw
2a3bec43c0a8e43d6159c4764aaa9c1507c1c3f8
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: 部署 SQL Server 2016 PowerPivot 和 SharePoint 2016 中的 Power View |Microsoft 文件 ms.date: 05/02/2018 ms.prod: sql ms.technology: analysis-services ms.custom: ppvt-sharepoint ms.topic: conceptual ms.author: owend ms.reviewer: owend author: minewiskan manager: kfile ms.openlocfilehash: aec63db2590e48bcbd605fea8e3ccfdad7073e78 ms.sourcegitcommit: c12a7416d1996a3bcce3ebf4a3c9abe61b02fb9e ms.translationtype: MT ms.contentlocale: zh-TW ms.lasthandoff: 05/10/2018 ms.locfileid: "34014925" --- # <a name="deploying-sql-server-2016-powerpivot-and-power-view-in-sharepoint-2016"></a>在 SharePoint 2016 中部署 SQL Server 2016 PowerPivot 和 Power View [!INCLUDE[ssas-appliesto-sqlas](../../../includes/ssas-appliesto-sqlas.md)] **摘要**︰這份技術白皮書提供 SharePoint 系統管理員和架構設計人員有關下列作業的詳細逐步指示:部署和設定 Microsoft BI 示範環境 (根據 SharePoint Server 2016 的 Preview 版本、Office Online Server 以及 SharePoint 2016 的 SQL Server 2016 BI 堆疊)。 在簡單介紹重要架構變更和對應系統相依性之後,同時概述軟體和組態需求,以及建議的部署路徑來透過三個主要階段啟用和驗證 BI 功能。 這份技術白皮書也會討論 SharePoint Server 2016 Beta 2、Office Online Server Preview 和 SQL Server 2016 CTP 3.1 版本中的已知問題,以及建議適當的因應措施。 最終產品版本將不再需要這些因應措施。 部署 RTM 版本時,請檢查這份技術白皮書的更新版本。 **作者:** Kay Unkroth **技術校閱:** Adam Saxton、Anne Zorner、Craig Guyer、Frank Weigel、Gregory Appel、Heidi Steen、Jason Haak、Kasper de Jonge、Kirk Stark、Klaus Sobel、Mike Plumley、Mike Taghizadeh、Patrick Wheeler、Riccardo Muti、Steve Hord **出版日期:** 2015 年 12 月 **適用於︰** SQL Server 2016 CTP3.1、SharePoint 2016 Preview、Office Online Server Preview 若要檢閱文件,請下載 Word 文件: [Deploying SQL Server 2016 PowerPivot and Power View in SharePoint 2016](http://download.microsoft.com/download/D/2/0/D20E1C5F-72EA-4505-9F26-FEF9550EFD44/Deploying%20SQL%20Server%202016%20PowerPivot%20and%20Power%20View%20in%20SharePoint%202016.docx) (在 SharePoint 2016 中部署 SQL Server 2016 PowerPivot 和 Power View)。
54.735294
418
0.783987
yue_Hant
0.741945
d9e258ad9d23e8e9ec1c45ef4ed23469d9c2ec44
5,094
md
Markdown
docs/ide/go-to-and-peek-definition.md
Delizald/visualstudio-docs
9dc38c9862b92ee11470081211a87ccdccb7ed5d
[ "CC-BY-4.0", "MIT" ]
2
2020-03-05T17:51:10.000Z
2022-03-01T22:19:46.000Z
docs/ide/go-to-and-peek-definition.md
Delizald/visualstudio-docs
9dc38c9862b92ee11470081211a87ccdccb7ed5d
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/ide/go-to-and-peek-definition.md
Delizald/visualstudio-docs
9dc38c9862b92ee11470081211a87ccdccb7ed5d
[ "CC-BY-4.0", "MIT" ]
1
2020-04-10T22:05:40.000Z
2020-04-10T22:05:40.000Z
--- title: Viewing type definitions ms.date: 01/10/2018 ms.topic: conceptual helpviewer_keywords: - code editor, view definition - go to definition - peek definition - type definition [Visual Studio] - member definition [Visual Studio] author: TerryGLee ms.author: tglee manager: jillfra ms.workload: - multiple --- # View type and member definitions Developers often need to view the source code definitions for types or class members they use in their code. In Visual Studio, the **Go To Definition** and **Peek Definition** features enable you to easily view the definition of a type or member. If the source code is not available, metadata is displayed instead. ## Go To Definition The **Go To Definition** feature navigates to the source of a type or member, and opens the result in a new tab. If you are a keyboard user, place your text cursor somewhere inside the symbol name and press **F12**. If you are a mouse user, either select **Go To Definition** from the right-click menu or use the **Ctrl-click** functionality described in the following section. ### Ctrl-click Go To Definition **Ctrl**+**click** is a shortcut for mouse users to quickly access **Go To Definition**. Symbols become clickable when you press **Ctrl** and hover over the type or member. To quickly navigate to the definition of a symbol, press the **Ctrl** key and then click on it. It's that easy! ![Mouse click go to definition animation](../ide/media/click_gotodef.gif) You can change the modifier key for mouse-click **Go To Definition** by going to **Tools** > **Options** > **Text Editor** > **General**, and selecting either **Alt** or **Ctrl**+**Alt** from the **Use modifier key** drop-down. You can also disable mouse-click **Go To Definition** by unchecking the **Enable mouse click to perform Go To Definition** checkbox. ![Enabling mouse-click go to definition](../ide/media/editor_options_mouse_click_gotodef.png) ## Peek Definition The **Peek Definition** feature lets you preview the definition of a type without leaving your current location in the editor. If you are a keyboard user, place your text cursor somewhere inside the type or member name and press **Alt + F12**. If you are a mouse user, you can select **Peek Definition** from the right-click menu. To enable **Ctrl**+**click** functionality, go to **Tools** > **Options** > **Text Editor** > **General**. Select the option **Open definition in peek view** and click **OK** to close the **Options** dialog box. ![Setting the mouse-click peek definition option](../ide/media/editor_options_peek_view.png) Then, press **Ctrl** (or whichever modifier key is selected in **Options**), and click on the type or member. ![Peek definition animation](../ide/media/peek_definition.gif) If you peek another definition from the popup window, you start a breadcrumb path that you can navigate using the circles and arrows that appear above the popup. For more information, see [How to: View and edit code by using Peek Definition (Alt+F12)](how-to-view-and-edit-code-by-using-peek-definition-alt-plus-f12.md). ## View metadata as source code (C#) When you view the definition of C# types or members whose source code is not available, their metadata is displayed instead. You can see the declarations of the types and members, but not their implementations. When you run the **Go To Definition** or **Peek Definition** command for an item whose source code is unavailable, a tabbed document that contains a view of that item's metadata, displayed as source code, appears in the code editor. The name of the type, followed by **[from metadata]**, appears on the document's tab. For example, if you run the **Go To Definition** command for <xref:System.Console>, metadata for <xref:System.Console> appears in the code editor as C# source code. The code resembles its declaration, but does not show an implementation. ![Metadata as Source](../ide/media/metadatasource.png) > [!NOTE] > When you try to run the **Go To Definition** or **Peek Definition** command for types or members that are marked as internal, Visual Studio does not display their metadata as source code, regardless of whether the referencing assembly is a friend or not. ### View decompiled source definitions instead of metadata (C#) You can set an option to see decompiled source code when you view the definition of a C# type or member whose source code is unavailable. To turn on this feature, choose **Tools** > **Options** from the menu bar. Then, expand **Text Editor** > **C#** > **Advanced**, and select **Enable navigation to decompiled sources**. ![Viewing a decompiled definition](media/go-to-definition-decompiled-sources.png) > [!NOTE] > Visual Studio reconstructs method bodies using ILSpy decompilation. The first time you access this feature, you must agree to a legal disclaimer regarding software licensing and copyright and trademark laws. ## See also - [Navigate code](../ide/navigating-code.md) - [How to: View and edit code by using Peek Definition (Alt+F12)](how-to-view-and-edit-code-by-using-peek-definition-alt-plus-f12.md)
66.155844
377
0.754417
eng_Latn
0.991906
d9e3b67dbbbb2bbf887a3d2ee455af10d4759402
89
md
Markdown
about.md
DavidMarkHill/davidmarkhill.github.io
04a767cf3dfbd90c391ba97359ae5242a0c1679f
[ "MIT" ]
null
null
null
about.md
DavidMarkHill/davidmarkhill.github.io
04a767cf3dfbd90c391ba97359ae5242a0c1679f
[ "MIT" ]
null
null
null
about.md
DavidMarkHill/davidmarkhill.github.io
04a767cf3dfbd90c391ba97359ae5242a0c1679f
[ "MIT" ]
null
null
null
--- layout: page title: About permalink: /about/ featured-img: about-lg --- Coming soon
9.888889
22
0.696629
eng_Latn
0.920628
d9e3bce4ce4c5c94116bdfb7289cf9608820e2e8
1,013
md
Markdown
docs/LV_client/tools/mono_start_hil.md
andresgonzalez2/monodrive-documentation
e459e803fc1ef6f87beaf2b1b6fea21f92ed6467
[ "MIT" ]
7
2020-06-11T21:35:15.000Z
2021-04-19T03:45:33.000Z
docs/LV_client/tools/mono_start_hil.md
andresgonzalez2/monodrive-documentation
e459e803fc1ef6f87beaf2b1b6fea21f92ed6467
[ "MIT" ]
126
2020-03-03T22:30:40.000Z
2021-07-30T16:08:24.000Z
docs/LV_client/tools/mono_start_hil.md
andresgonzalez2/monodrive-documentation
e459e803fc1ef6f87beaf2b1b6fea21f92ed6467
[ "MIT" ]
4
2018-09-11T09:52:10.000Z
2019-09-26T06:35:41.000Z
# mono_start_hil.vi <p class="img_container"> <img class="lg_img" src="../mono_start_hil.png"/> </p> ### Description Tool for initialization of a HIL mode program. For technical support contact us at <b>support@monodrive.io</b> ### Inputs - **Trajectory Configuration:** Path to the Trajectory (replay) file - **Weather Profile Ref:** Reference to the Weather Profile array - **error in (Error Cluster):** Accepts error information wired from previously called VIs. This information can be used to decide if any functionality should be bypassed in the event of errors from other VIs. ### Outputs - **Trajectory Configuration:** Trajectory (replay) read from the input file - **Weather Profiles:** Array of the weather profiles obtained by the weather configuration. - **error out (Error Cluster):** Accepts error information wired from previously called VIs. This information can be used to decide if any functionality should be bypassed in the event of errors from other VIs. <p>&nbsp;</p>
33.766667
211
0.745311
eng_Latn
0.988687
d9e4139d390442a727f5faa64c82a472fabd8bd2
2,241
md
Markdown
2014 - Risen 3 Titan Lords/ReadMe.md
Unicornum/Db.Games
8cdfb6c123ada3e0348212ceae7ab9ac98587118
[ "MIT" ]
null
null
null
2014 - Risen 3 Titan Lords/ReadMe.md
Unicornum/Db.Games
8cdfb6c123ada3e0348212ceae7ab9ac98587118
[ "MIT" ]
null
null
null
2014 - Risen 3 Titan Lords/ReadMe.md
Unicornum/Db.Games
8cdfb6c123ada3e0348212ceae7ab9ac98587118
[ "MIT" ]
null
null
null
:clipboard: 25.01.2022 Win10 x64 ## Risen 3: Titan Lords :star: :star: :star: :star: :star: ### Игра https://www.gog.com/ru/game/risen_3_titan_lords - Проблема с белыми текстурами решается установкой в настройках видеокарты "использовать настройки приложения". - Игра не любит пути с русскими буквами и пробелами, поэтому если имя пользователя Windows содержит то или другое, то в файле **data\ini\mount_packed.xml** нужно заменить путь к папке сохранений > PhysicalPath="$(savedgames)/Risen3/SaveGames" на, например > PhysicalPath="D:/Risen3/SaveGames" ### Widescreen Для установки разрешения 2560x1080 перед первым запуском игры: 1. Открыть с помощью [hex редактора](https://github.com/Unicornum/Db.Games/releases/download/Risen/HxD.zip) файл **system\Risen3.exe**. 2. Найти в нем hex последовательность **39 8E E3 3F** (будет в двух местах) и заменить на **26 B4 17 40**. 3. В файле **data/ini/ConfigDefault.xml** в разделе **Aspect16x9** изменить параметр "VirtalWidth=2560". > Для сброса настроек игры удалить папку **$(localappdata)/Risen3**. ### Русская озвучка > Мод **Risen 3 Remaster** с этой озвучкой работать не будет (и он уже включает в себя адаптированную версию), поэтому если планируется его установка, то ставить эту озвучку не нужно. [Скачать](https://www.gamesvoice.ru/risen3) ### Risen 3 Remaster Ссылка на мод: https://www.nexusmods.com/risen3/mods/10 > Мод содержит возможность указать в файле настроек любое разрешение, но заставить его работать в разрешении 2560x1080 не удалось, поэтому следует прежде проделать с оригинальной игрой то, что описано в разделе **Widescreen** и только потом устанавливать мод. 1. Запустить игру файлом **system\Risen3.exe** и выйти из игры (моду нужен сформированный игрой файл настроек). 2. Скачать архив Risen_3_Remaster_Launcher и распаковать его в папку system игры. 3. Запустить файл **system\Riren3_Remaster_Launcher.exe** и убедиться, что игра запускается и работает; если нет, то скачивать остальные файлы не нужно, мод работать не будет. 4. Скачать архивы Textures, Update, Russian_Sound и распаковать их в папку игры именно в этой последовательности. 5. В файле **system\Risen3_Remaster.ini** раскомментировать и дополнить строку > [GAME TEXT = RUSSIAN]
45.734694
259
0.773762
rus_Cyrl
0.92347
d9e4ba49db8582e8bd782623bb5965da23196079
3,487
md
Markdown
docs/Scripture (BPT)/24 - Jeremiah/Jer-37.md
omegakid1902/blue-book-garden
ff97c2c02f87af56378dc6bf515bde74f269f40a
[ "CC0-1.0" ]
1
2021-09-16T00:03:07.000Z
2021-09-16T00:03:07.000Z
content/Scripture (BPT)/24 - Jeremiah/Jer-37.md
omegakid1902/gatsby-garden
1ed519b3f26fecb30ae591bf27e5a3abdefbf0cc
[ "MIT" ]
null
null
null
content/Scripture (BPT)/24 - Jeremiah/Jer-37.md
omegakid1902/gatsby-garden
1ed519b3f26fecb30ae591bf27e5a3abdefbf0cc
[ "MIT" ]
null
null
null
# Jeremiah 37 [[Jer-36|← Jeremiah 36]] | [[Jeremiah]] | [[Jer-38|Jeremiah 38 →]] *** ###### v1 Nê-bu-cát-nết-xa, vua Ba-by-lôn đã chỉ định Xê-đê-kia, con Giô-xia làm vua Giu-đa. Xê-đê-kia thay thế Giê-hô-gia-kin, con trai Giê-hô-gia-kim. ###### v2 Nhưng Xê-đê-kia, các đầy tớ ông và dân Giu-đa không nghe lời CHÚA phán qua nhà tiên tri Giê-rê-mi. ###### v3 Lúc ấy vua Xê-đê-kia sai Giê-hu-can, con Sê-lê-mia, và thầy tế lễ Xô-phô-ni, con Ma-a-sê-gia, nhắn với nhà tiên tri Giê-rê-mi như sau: "Giê-rê-mi ơi, xin ông hãy cầu nguyện cùng CHÚA là Thượng Đế cho chúng tôi." ###### v4 Lúc đó Giê-rê-mi chưa bị bỏ tù. Cho nên ông được tự do đi lại. ###### v5 Đạo quân của vua Ai-cập đã kéo lên từ Ai-cập tiến về phía Giu-đa. Lúc đó đạo quân Ba-by-lôn đã vây thành Giê-ru-sa-lem. Khi chúng nghe quân Ai-cập đang tiến về phía chúng thì liền bỏ đi khỏi Giê-ru-sa-lem. ###### v6 CHÚA phán cùng nhà tiên tri Giê-rê-mi rằng: ###### v7 "CHÚA là Thượng Đế của Ít-ra-en phán: Hỡi Giê-hu-canh và Xô-phô-ni, ta biết Xê-đê-kia, vua Giu-đa sai các ngươi đến cầu xin ta giúp đỡ. Hãy bảo vua Xê-đê-kia như sau: 'Hãy nghe kỹ đây: Đạo quân của vua Ai-cập kéo đến giúp ngươi nhưng chúng sẽ trở về Ai-cập. ###### v8 Sau đó, đạo quân Ba-by-lôn sẽ trở lại tấn công Giê-ru-sa-lem, chiếm nó và thiêu rụi nó.'" ###### v9 CHÚA phán: "Hỡi dân cư Giê-ru-sa-lem, chớ tự gạt mình. Đừng nói, 'Quân Ba-by-lôn sẽ để chúng ta yên.' Không đâu! ###### v10 Dù cho các ngươi đánh bại toàn đạo quân Ba-by-lôn đang tấn công các ngươi đến nỗi chỉ còn một số người bị thương còn sót lại trong lều, chúng sẽ từ lều mình đến và đốt tiêu Giê-ru-sa-lem!" ###### v11 Vậy quân Ba-by-lôn bỏ Giê-ru-sa-lem để đánh quân của vua Ai-cập. ###### v12 Lúc đó Giê-rê-mi tìm cách đi từ Giê-ru-sa-lem xuống xứ Bên-gia-min để nhận phần gia tài của mình. ###### v13 Khi ông đến Cổng Bên-gia-min ở Giê-ru-sa-lem , thì viên sĩ quan chỉ huy toán cận vệ bắt giữ ông. Tên viên sĩ quan đó là Y-ri-gia, con Sê-lê-mia, cháu Ha-na-nia. Y-ri-gia nói, "Anh định bỏ chúng tôi để theo quân Ba-by-lôn phải không?" ###### v14 Nhưng Giê-rê-mi bảo Y-ri-gia, "Không phải! Tôi không theo phe quân Ba-by-lôn." Y-ri-gia không nghe Giê-rê-mi, nên bắt ông và giải đến các viên chức của Giê-ru-sa-lem. ###### v15 Các viên quan đó rất bất bình với Giê-rê-mi và đánh đập ông. Rồi họ nhốt ông trong nhà của Giô-na-than, bí thư hoàng gia, nhà đó đã biến thành nhà tù. ###### v16 Vậy họ nhốt ông trong ngục tối. Giê-rê-mi bị giam trong đó lâu ngày. ###### v17 Sau đó vua Xê-đê-kia cho giải Giê-rê-mi đến cung vua. Xê-đê-kia hỏi riêng ông, "Có lời gì từ CHÚA không?" Giê-rê-mi đáp, "Thưa vua Xê-đê-kia, có. Vua sẽ bị trao vào tay vua Ba-by-lôn." ###### v18 Rồi Giê-rê-mi hỏi vua Xê-đê-kia, "Tôi đã làm điều gì phạm pháp nghịch vua, các quần thần hay dân cư Giê-ru-sa-lem? Tại sao vua tống giam tôi vào ngục? ###### v19 Còn các nhà tiên tri đã nói tiên tri như sau về vua: 'Vua Ba-by-lôn sẽ không tấn công vua hay đất Giu-đa nầy' đâu rồi? ###### v20 Nhưng bây giờ, thưa vua và chúa tôi, xin hãy nghe tôi, và làm theo điều tôi van xin. Xin đừng gởi tôi về nhà Giô-na-than, bí thư hoàng gia, nếu không tôi sẽ bỏ xác ở đó!" ###### v21 Vậy vua Xê-đê-kia ra lệnh canh giữ Giê-rê-mi trong sân của toán cận vệ, mỗi ngày được cấp bánh từ phố của thợ làm bánh cho đến khi trong thành không còn bánh nữa. Vậy Giê-rê-mi bị canh giữ trong sân của toán cận vệ. *** [[Jer-36|← Jeremiah 36]] | [[Jeremiah]] | [[Jer-38|Jeremiah 38 →]]
47.767123
258
0.67049
vie_Latn
1.00001
d9e4bbfaa5e35ba0adb7e0eb05155ea1fd1b2c1c
2,851
md
Markdown
lib/pflua/doc/sctp.md
peahonen/snabb
4b0c18beb86223414fcdbf0dc9e9f5fa5aaa2179
[ "Apache-2.0" ]
1,657
2016-04-01T09:04:47.000Z
2022-03-31T18:25:24.000Z
lib/pflua/doc/sctp.md
peahonen/snabb
4b0c18beb86223414fcdbf0dc9e9f5fa5aaa2179
[ "Apache-2.0" ]
700
2016-04-19T17:59:51.000Z
2020-01-13T13:03:35.000Z
lib/pflua/doc/sctp.md
peahonen/snabb
4b0c18beb86223414fcdbf0dc9e9f5fa5aaa2179
[ "Apache-2.0" ]
180
2016-04-04T15:04:23.000Z
2022-02-16T23:15:33.000Z
# sctp ## BPF ``` 000: A = P[12:2] 001: if (A == 34525) goto 2 else goto 7 002: A = P[20:1] 003: if (A == 132) goto 10 else goto 4 004: if (A == 44) goto 5 else goto 11 005: A = P[54:1] 006: if (A == 132) goto 10 else goto 11 007: if (A == 2048) goto 8 else goto 11 008: A = P[23:1] 009: if (A == 132) goto 10 else goto 11 010: return 65535 011: return 0 ``` ## BPF cross-compiled to Lua ``` return function (P, length) local A = 0 if 14 > length then return false end A = bit.bor(bit.lshift(P[12], 8), P[12+1]) if not (A==34525) then goto L6 end if 21 > length then return false end A = P[20] if (A==132) then goto L9 end if not (A==44) then goto L10 end if 55 > length then return false end A = P[54] if (A==132) then goto L9 end goto L10 ::L6:: if not (A==2048) then goto L10 end if 24 > length then return false end A = P[23] if not (A==132) then goto L10 end ::L9:: do return true end ::L10:: do return false end error("end of bpf") end ``` ## Direct pflang compilation ``` local cast = require("ffi").cast return function(P,length) if length < 34 then return false end local v1 = cast("uint16_t*", P+12)[0] if v1 == 8 then return P[23] == 132 end if length < 54 then return false end if v1 ~= 56710 then return false end local v2 = P[20] if v2 == 132 then return true end if length < 55 then return false end if v2 ~= 44 then return false end return P[54] == 132 end ``` ## Native pflang compilation ``` 7f08ad4cb000 4883FE22 cmp rsi, +0x22 7f08ad4cb004 7C4E jl 0x7f08ad4cb054 7f08ad4cb006 0FB7470C movzx eax, word [rdi+0xc] 7f08ad4cb00a 4883F808 cmp rax, +0x08 7f08ad4cb00e 750F jnz 0x7f08ad4cb01f 7f08ad4cb010 0FB64F17 movzx ecx, byte [rdi+0x17] 7f08ad4cb014 4881F984000000 cmp rcx, 0x84 7f08ad4cb01b 743A jz 0x7f08ad4cb057 7f08ad4cb01d EB35 jmp 0x7f08ad4cb054 7f08ad4cb01f 4883FE36 cmp rsi, +0x36 7f08ad4cb023 7C2F jl 0x7f08ad4cb054 7f08ad4cb025 4881F886DD0000 cmp rax, 0xdd86 7f08ad4cb02c 7526 jnz 0x7f08ad4cb054 7f08ad4cb02e 0FB64714 movzx eax, byte [rdi+0x14] 7f08ad4cb032 4881F884000000 cmp rax, 0x84 7f08ad4cb039 741C jz 0x7f08ad4cb057 7f08ad4cb03b 4883FE37 cmp rsi, +0x37 7f08ad4cb03f 7C13 jl 0x7f08ad4cb054 7f08ad4cb041 4883F82C cmp rax, +0x2c 7f08ad4cb045 750D jnz 0x7f08ad4cb054 7f08ad4cb047 0FB64736 movzx eax, byte [rdi+0x36] 7f08ad4cb04b 4881F884000000 cmp rax, 0x84 7f08ad4cb052 7403 jz 0x7f08ad4cb057 7f08ad4cb054 B000 mov al, 0x0 7f08ad4cb056 C3 ret 7f08ad4cb057 B001 mov al, 0x1 7f08ad4cb059 C3 ret ```
27.413462
58
0.62329
eng_Latn
0.327194
d9e4ebd318f150086dc143f3153105e44340c0b8
2,953
md
Markdown
docs/multitenant-identity/tailspin.md
mattmcevoy-modality/architecture-center
ccc8687a07a15b3a80da5ef37d2929600dd1196d
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/multitenant-identity/tailspin.md
mattmcevoy-modality/architecture-center
ccc8687a07a15b3a80da5ef37d2929600dd1196d
[ "CC-BY-4.0", "MIT" ]
4
2021-06-08T22:50:03.000Z
2022-03-12T00:52:01.000Z
docs/multitenant-identity/tailspin.md
mattmcevoy-modality/architecture-center
ccc8687a07a15b3a80da5ef37d2929600dd1196d
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: About the Tailspin Surveys application description: An overview of the Tailspin Surveys application. author: adamboeglin ms.date: 07/21/2017 ms.topic: guide ms.service: architecture-center ms.category: - developer-tools ms.subservice: reference-architecture --- # The Tailspin scenario [![GitHub](../_images/github.png) Sample code][sample application] Tailspin is a fictional company that is developing a SaaS application named Surveys. This application enables organizations to create and publish online surveys. * An organization can sign up for the application. * After the organization is signed up, users can sign into the application with their organizational credentials. * Users can create, edit, and publish surveys. > [!NOTE] > To get started with the application, see the [GitHub readme](https://github.com/mspnp/multitenant-saas-guidance/blob/master/get-started.md). ## Users can create, edit, and view surveys An authenticated user can view all the surveys that he or she has created or has contributor rights to, and create new surveys. Notice that the user is signed in with his organizational identity, `bob@contoso.com`. ![Surveys app](./images/surveys-screenshot.png) This screenshot shows the Edit Survey page: ![Edit survey](./images/edit-survey.png) Users can also view any surveys created by other users within the same tenant. ![Tenant surveys](./images/tenant-surveys.png) ## Survey owners can invite contributors When a user creates a survey, he or she can invite other people to be contributors on the survey. Contributors can edit the survey, but cannot delete or publish it. ![Add contributor](./images/add-contributor.png) A user can add contributors from other tenants, which enables cross-tenant sharing of resources. In this screenshot, Bob (`bob@contoso.com`) is adding Alice (`alice@fabrikam.com`) as a contributor to a survey that Bob created. When Alice logs in, she sees the survey listed under "Surveys I can contribute to". ![Survey contributor](./images/contributor.png) Note that Alice signs into her own tenant, not as a guest of the Contoso tenant. Alice has contributor permissions only for that survey &mdash; she cannot view other surveys from the Contoso tenant. ## Architecture The Surveys application consists of a web front end and a web API backend. Both are implemented using [ASP.NET Core]. The web application uses Azure Active Directory (Azure AD) to authenticate users. The web application also calls Azure AD to get OAuth 2 access tokens for the Web API. Access tokens are cached in Azure Cache for Redis. The cache enables multiple instances to share the same token cache (for example, in a server farm). ![Architecture](./images/architecture.png) [**Next**][authentication] <!-- links --> [authentication]: ./authenticate.md [ASP.NET Core]: https://docs.microsoft.com/aspnet/core [sample application]: https://github.com/mspnp/multitenant-saas-guidance
42.185714
318
0.777853
eng_Latn
0.990299
d9e5821cfd615f0d4e193043ffa6c849ec1913d3
5,205
md
Markdown
CHANGELOG.md
umee-network/peggo
b893ad83cef4b1631e5d88e687725de6acc795f8
[ "Apache-2.0" ]
9
2021-11-13T13:05:27.000Z
2022-03-28T20:17:51.000Z
CHANGELOG.md
umee-network/peggo
b893ad83cef4b1631e5d88e687725de6acc795f8
[ "Apache-2.0" ]
101
2021-11-01T14:00:30.000Z
2022-03-31T12:19:19.000Z
CHANGELOG.md
umee-network/peggo
b893ad83cef4b1631e5d88e687725de6acc795f8
[ "Apache-2.0" ]
18
2021-11-16T15:01:37.000Z
2022-03-02T07:09:27.000Z
<!-- markdownlint-disable MD024 --> <!-- markdownlint-disable MD013 --> <!-- Changelog Guiding Principles: Changelogs are for humans, not machines. There should be an entry for every single version. The same types of changes should be grouped. Versions and sections should be linkable. The latest version comes first. The release date of each version is displayed. Mention whether you follow Semantic Versioning. Usage: Change log entries are to be added to the Unreleased section under the appropriate stanza (see below). Each entry should ideally include a tag and the Github PR referenced in the following format: * (<tag>) [#<PR-number>](https://github.com/umee-network/peggo/pull/<PR-number>) <changelog entry> Types of changes (Stanzas): Features: for new features. Improvements: for changes in existing functionality. Deprecated: for soon-to-be removed features. Bug Fixes: for any bug fixes. API Breaking: for breaking exported Go APIs used by developers. To release a new version, ensure an appropriate release branch exists. Add a release version and date to the existing Unreleased section which takes the form of: ## [<version>](https://github.com/umee-network/peggo/releases/tag/<version>) - YYYY-MM-DD Once the version is tagged and released, a PR should be made against the main branch to incorporate the new changelog updates. Ref: https://keepachangelog.com/en/1.0.0/ --> # Changelog ## [Unreleased] ### Improvements [#297](https://github.com/umee-network/peggo/pull/297) Update dependabot reviewers. ### Bug Fixes [#270](https://github.com/umee-network/peggo/pull/270) Remove Cosmos PK flag ## [v0.3.0](https://github.com/umee-network/peggo/releases/tag/v0.3.0) - 2022-04-01 ### Features [#252](https://github.com/umee-network/peggo/pull/252) Point to new version of Umee + GB ## [v0.2.7](https://github.com/umee-network/peggo/releases/tag/v0.2.7) - 2022-03-31 ### Features [#231](https://github.com/umee-network/peggo/pull/231) Add multiple providers for token prices. ## [v0.2.6](https://github.com/umee-network/peggo/releases/tag/v0.2.6) - 2022-03-01 ### Features [#216](https://github.com/umee-network/peggo/pull/216) Add profitability check on the batch requester loop. ### Bug Fixes - [#217](https://github.com/umee-network/peggo/pull/217) Add validation to user input Ethereum addresses. - [#209](https://github.com/umee-network/peggo/pull/209) Fix the `version` command to display correctly. - [#205](https://github.com/umee-network/peggo/pull/205) Make sure users are warned when using unencrypted non-local urls in flags. ## [v0.2.5](https://github.com/umee-network/peggo/releases/tag/v0.2.5) - 2022-02-21 ### Features - [#189] Add the flag `--valset-relay-mode` which allows a finer control over how valsets will be relayed. ### Improvements - [#201] Add ERC20 mappings for Umee's new tokens. ### Deprecated - [#189] Deprecate the `--relay-valsets` flag. ### Bug Fixes - [#189] Order validator set before deploying (`peggo bridge deploy-gravity`) ## [v0.2.4](https://github.com/umee-network/peggo/releases/tag/v0.2.4) - 2022-02-16 ### Improvements - [#172] Add fallback token addresses (to aid price lookup) - [#185] Add fallback token addresses (to aid price lookup) for Umee ### Deprecated - [#174] Deprecate `--eth-pk` in favor of an env var (`$PEGGO_ETH_PK`) ## [v0.2.3](https://github.com/umee-network/peggo/releases/tag/v0.2.3) - 2022-02-07 ### Improvements - [#158] Bump Gravity Bridge module to v1.4.1 - [#161] Bump Cosmos SDK to v0.45.1 - [#163] Bump Umee to v0.7.4 ## [v0.2.2](https://github.com/umee-network/peggo/releases/tag/v0.2.2) - 2022-02-01 ### Improvements - [#144] Bump Umee version to 0.7.1 and fix Gravity Bridge to v1.3.5 ### Bug Fixes - [#139] Fix issue reported by ToB's audit (TOB-001) ## [v0.2.1](https://github.com/umee-network/peggo/releases/tag/v0.2.1) - 2022-01-31 ### Improvements - [#132] Add `cosmos-msgs-per-tx` flag to set how many messages (Ethereum claims) will be sent in each Cosmos transaction. - [#134] Improve valset relaying by changing how we search for the last valid valset update. ### Bug Fixes - [#134] Fix logs, CLI help and a panic when a non-function call transaction was received during the TX pending check. ## [v0.2.0](https://github.com/umee-network/peggo/releases/tag/v0.2.0) - 2022-01-17 ### Features - [#118] Target the [Gravity Bridge](https://github.com/Gravity-Bridge/Gravity-Bridge) module. ### Improvements - [#123] Cleanup after GB implementation. Updates and fixes to match Gravity.sol - [#125] Enable running tests with Ganache. Use gentx for gravity keys. ### Bug fixes - [#128] Fix "nonce too low" error and other issues related to relaying. ## [v0.1.1](https://github.com/umee-network/peggo/releases/tag/v0.1.1) - 2021-12-22 ### Bug Fixes - [#104] Claims are split into chunks of 10 to avoid hitting request limits. ### Improvements - [#104] Changed timeout for broadcasting TXs to Umee to 60s to match that of the official Gravity Bridge. - [#105] Added a gas limit adjustment flag for Ethereum transactions. ## [v0.1.0](https://github.com/umee-network/peggo/releases/tag/v0.1.0) - 2021-12-18 ### Features - Initial release!!!
30.261628
131
0.722574
eng_Latn
0.887193
d9e5e6b75618a605dacbb1ec2d48c97e98f26ba7
3,643
md
Markdown
docs/paginator.md
ryanml/uphold-sdk-javascript
74259d9d03a56cc0f536149e2bbca88453aedee4
[ "MIT" ]
77
2017-05-18T15:02:57.000Z
2022-01-13T06:09:00.000Z
docs/paginator.md
brave-intl/uphold-sdk-javascript
74259d9d03a56cc0f536149e2bbca88453aedee4
[ "MIT" ]
27
2017-09-19T17:12:06.000Z
2021-09-14T23:29:15.000Z
docs/paginator.md
brave-intl/uphold-sdk-javascript
74259d9d03a56cc0f536149e2bbca88453aedee4
[ "MIT" ]
29
2017-07-22T04:48:47.000Z
2021-09-02T11:44:42.000Z
# Paginator An instance of this class is returned in every action that requests an endpoint that implements [pagination](https://uphold.com/en/developer/api/documentation/#pagination), simplifying the construction and parsing of `Range` and `Content-Range` headers. ## Properties | Property | Type | Description | |:---------------|:-------|:--------------------------------------------------| | `currentPage` | Number | The current page, considering the pagination size | | `headers` | Object | Headers of the current page response | | `items` | Array | Current page items | | `itemsCount` | Number | Current page items count | | `itemsPerPage` | Number | Pagination size | | `options` | Object | Options passed to [`.api()`](/sdk#api) method | | `pagesCount` | Number | Number of pages | | `sdk` | SDK | [`SDK`](/sdk) instance | | `uri` | String | Resource URI | **NOTE:** The `options` property will be passed in any [`.getPage()`](#getpage), [`.getNextPage()`](#getnextpage) and [`.getPreviousPage()`](#getpreviouspage) methods to the underlying [`.api()`](/sdk#api) call behind the hood, although you can override it in each of these methods or any other [action](/actions) that resolves a `Paginator` instance. ## Constructor | Argument | Type | Required | Description | |:---------------|:-------|:---------|:--------------------------------------------------| | `sdk` | SDK | Yes | [`SDK`](/sdk) instance | | `uri` | String | Yes | Resource URI | | `itemsPerPage` | Number | Yes | Pagination size | | `options` | Object | No | Options passed to the [`.api()`](/sdk#api) method | ## Methods ### `.getNextPage()` Resolves a `Paginator` instance for the next page or `undefined` if non-existent. | Argument | Type | Required | Description | |:----------|:-------|:---------|:---------------------------------------------------------| | `options` | Object | No | Any options you may want to pass to [`.api()`](/sdk#api) | This method returns a **Promise**. ### `.getPreviousPage()` Resolves a `Paginator` instance for the previous page or `undefined` if non-existent. | Argument | Type | Required | Description | |:----------|:-------|:---------|:---------------------------------------------------------| | `options` | Object | No | Any options you may want to pass to [`.api()`](/sdk#api) | This method returns a **Promise**. ### `.hasNextPage()` Determines whether or not there is a next page. ### `.hasPreviousPage()` Determines whether or not there is a previous page. ### `.getPage()` Resolves a `Paginator` instance for a specific page or `undefined` if non-existent. | Argument | Type | Required | Default | Description | |:----------|:-------|:---------|:--------|:---------------------------------------------------------| | `page` | Number | No | `1` | Page number to request | | | `options` | Object | No | | Any options you may want to pass to [`.api()`](/sdk#api) | This method returns a **Promise**.
52.042857
351
0.463629
eng_Latn
0.897137
d9e6c97f15fee1bf3f06894b6eb7252b9a24b937
56
md
Markdown
README.md
havthgem/quick-resize
0ef1f88a2a7c737d72315a08eebc8300afbc20b0
[ "MIT" ]
3
2016-03-23T09:17:54.000Z
2017-08-22T23:23:13.000Z
README.md
havthgem/quick-resize
0ef1f88a2a7c737d72315a08eebc8300afbc20b0
[ "MIT" ]
null
null
null
README.md
havthgem/quick-resize
0ef1f88a2a7c737d72315a08eebc8300afbc20b0
[ "MIT" ]
null
null
null
# quick-resize package Quick to resize of Atom window.
14
31
0.767857
eng_Latn
0.931611
d9e6e5edf5bfd00a7adad4e069911f1c65f35e3b
33,083
md
Markdown
articles/active-directory/reports-monitoring/reference-audit-activities.md
karoldeland/azure-docs.fr-fr
ebb12f93459e6f9cf38b50b296d81a2322949780
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/active-directory/reports-monitoring/reference-audit-activities.md
karoldeland/azure-docs.fr-fr
ebb12f93459e6f9cf38b50b296d81a2322949780
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/active-directory/reports-monitoring/reference-audit-activities.md
karoldeland/azure-docs.fr-fr
ebb12f93459e6f9cf38b50b296d81a2322949780
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Référence sur l’activité d’audit Azure Active Directory (Azure AD) | Microsoft Docs description: Obtenez une vue d’ensemble des activités d’audit pouvant être enregistrées dans vos journaux d’audit dans Azure Active Directory (Azure AD). services: active-directory documentationcenter: '' author: MarkusVi manager: daveba editor: '' ms.assetid: a1f93126-77d1-4345-ab7d-561066041161 ms.service: active-directory ms.devlang: na ms.topic: reference ms.tgt_pltfrm: na ms.workload: identity ms.subservice: report-monitor ms.date: 01/24/2019 ms.author: markvi ms.reviewer: dhanyahk ms.collection: M365-identity-device-management ms.openlocfilehash: 843f12d14120a7becdc1e8b15bfcc65948602c44 ms.sourcegitcommit: 2ec4b3d0bad7dc0071400c2a2264399e4fe34897 ms.translationtype: HT ms.contentlocale: fr-FR ms.lasthandoff: 03/27/2020 ms.locfileid: "74007750" --- # <a name="azure-ad-audit-activity-reference"></a>Référence sur l’activité d’audit Azure AD Avec les rapports Azure Active Directory (Azure AD), vous pouvez obtenir toutes les informations dont vous avez besoin pour déterminer l’état de votre environnement. L’architecture de création de rapports dans Azure AD comprend les composants suivants : - **Rapports d’activité** - [Connexions](concept-sign-ins.md) – Fournit des informations sur l’utilisation des applications managées et les activités de connexion des utilisateurs - [Journaux d’audit](concept-audit-logs.md) : traçabilité proposée via des journaux d’activité pour toutes les modifications effectuées par diverses fonctionnalités au sein d’Azure AD. - **Rapports de sécurité** - [Connexions risquées](concept-risky-sign-ins.md) : une connexion risquée est une tentative de connexion susceptible de provenir d’un utilisateur autre que le propriétaire légitime d’un compte d’utilisateur. - [Utilisateurs avec indicateur de risque](concept-user-at-risk.md) : il s’agit d’un compte d’utilisateur susceptible d’être compromis. Cet article répertorie les activités d’audit qui peuvent être enregistrées dans vos journaux d’audit. ## <a name="access-reviews"></a>Révisions d’accès |Catégorie d’audit|Activité| |---|---| |Révisions d’accès|Révision d’accès terminée| |Révisions d’accès|Ajouter un approbateur pour approuver une demande| |Révisions d’accès|Ajouter un réviseur pour la révision d’accès| |Révisions d’accès|Appliquer une révision d’accès| |Révisions d’accès|Créer une révision d’accès| |Révisions d’accès|Créer le programme| |Révisions d’accès|Créer une approbation de demande| |Révisions d’accès|Supprimer une révision d’accès| |Révisions d’accès|Supprimer le programme| |Révisions d’accès|Lier le contrôle du programme| |Révisions d’accès|Intégrer les révisions d’accès Azure AD| |Révisions d’accès|Supprimer un réviseur pour la révision d’accès| |Révisions d’accès|Demander l’arrêt de la révision| |Révisions d’accès|Demander l’application du résultat de révision| |Révisions d’accès|Examiner l’appartenance au rôle Rbac| |Révisions d’accès|Examiner l’affectation d’application| |Révisions d’accès|Examiner l’appartenance au groupe| |Révisions d’accès|Examiner la demande d’approbation de demande| |Révisions d’accès|Supprimer le lien du contrôle du programme| |Révisions d’accès|Mettre à jour une révision d’accès| |Révisions d’accès|Mettre à jour l'état d'intégration des révisions d'accès Azure AD| |Révisions d’accès|Mettre à jour les paramètres de notification par e-mail pour la révision d’accès| |Révisions d’accès|Mettre à jour le paramètre de nombre de la périodicité de révision de l’accès| |Révisions d’accès|Mettre à jour le paramètre de durée de la périodicité de révision de l’accès en jours| |Révisions d’accès|Mettre à jour le paramètre de type de fin de la périodicité de révision de l’accès| |Révisions d’accès|Mettre à jour le paramètre de type de la périodicité de révision de l’accès| |Révisions d’accès|Mettre à jour les paramètres de rappel pour la révision d’accès| |Révisions d’accès|Mettre à jour le programme| |Révisions d’accès|Mettre à jour une approbation de demande| |Révisions d’accès|Utilisateur désactivé| ## <a name="account-provisioning"></a>Approvisionnement des comptes |Catégorie d’audit|Activité| |---|---| |Gestion des applications|Récupérer des autorisations de l’application V2| |Gestion des applications|Récupérer des principaux de service d’application V2 dans le locataire actuel| |Gestion des applications|Mettre à jour une application V1| |Gestion des applications|Mettre à jour une application V2| |Gestion des applications|Mettre à jour une autorisation de l’application V2| |Gestion des applications|Ajouter OAuth2PermissionGrant| |Gestion des applications|Ajouter une attribution de rôle d’application à un principal de service| ## <a name="application-proxy"></a>Proxy d’application |Catégorie d’audit|Activité| |---|---| |Gestion des applications|Ajouter l’application| |Gestion des applications|Ajouter un propriétaire à une application| |Gestion des applications|Ajouter un propriétaire à un principal de service| |Gestion des applications|Ajouter une stratégie à un principal de service| |Gestion de répertoires|Ajouter un principal du service| |Gestion de répertoires|Ajouter les informations d'identification du principal du service| |Gestion de répertoires|Consentement pour une application| |Gestion de répertoires|Supprimer l’application| |Gestion de répertoires|Supprimer définitivement une application| |Gestion de répertoires|Supprimer OAuth2PermissionGrant| |Gestion de répertoires|Supprimer une attribution de rôle d’application d’un principal de service| |Gestion de répertoires|Supprimer un propriétaire d’une application| |Ressource|Supprimer un propriétaire d’un principal de service| |Ressource|Supprimer une stratégie d’un principal de service| |Ressource|Supprimer le principal du service| ## <a name="automated-password-rollover"></a>Substitution de mot de passe automatique |Catégorie d’audit|Activité| |---|---| |Gestion des applications|Supprimer les informations d'identification du principal du service| ## <a name="b2c"></a>B2C |Catégorie d’audit|Activité| |---|---| |Gestion des applications|Restaurer une application| |Gestion des applications|Révoquer un consentement| |Gestion des applications|Mettre à jour l’application| |Gestion des applications|Mise à jour de clés secrètes externes.| |Gestion des applications|Mettre à jour un principal de service| |Gestion des applications|Émettre un jeton d’accès à l’application| |Gestion des applications|Émettre un code d’autorisation pour l’application| |Gestion des applications|Émettre un id_token pour l’application| |Gestion des applications|Valider les informations d’identification de compte local| |Gestion des applications|Valider l’authentification de l’utilisateur| |Gestion des applications|Ajouter des autorisations de l’application V2| |Gestion des applications|Ajouter une clé basée sur un secret ASCII à un conteneur de clés CPIM| |Gestion des applications|Ajouter une clé à un conteneur de clés CPIM| |Gestion des applications|AdminPolicyDatas-SetResources| |Gestion des applications|AdminUserJourneys-GetResources| |Gestion des applications|AdminUserJourneys-RemoveResources| |Authentification|AdminUserJourneys-SetResources| |Authentification|Créer un IdentityProvider| |Authentification|Créer une application V1| |Authentification|Créer une application V2| |Authentification|Créer un domaine personnalisé dans le locataire| |Autorisation|Créer un AdminUserJourney| |Autorisation|Créer une ressource json localisée| |Autorisation|Créer un IDP personnalisé| |Autorisation|Créer un IDP| |Autorisation|Créer ou mettre à jour une ressource de répertoire B2C| |Autorisation|Créer une stratégie| |Autorisation|Créer une stratégie trustFramework| |Autorisation|Créer une stratégie trustFramework avec un préfixe configurable| |Autorisation|Créer un attribut utilisateur| |Autorisation|CreateTrustFrameworkPolicy| |Autorisation|Crée ou met à jour un AdminUserJourney| |Autorisation|Supprimer un IDP| |Autorisation|Supprimer un IdentityProvider| |Autorisation|Supprimer une application V1| |Autorisation|Supprimer une application V2| |Autorisation|Supprimer une autorisation de l’application V2| |Autorisation|Supprimer une ressource de répertoire B2C| |Autorisation|Supprimer un conteneur de clés CPIM| |Autorisation|Supprimer une stratégie trustFramework| |Autorisation|Supprimer un attribut utilisateur| |Autorisation|Activer la fonctionnalité B2C| |Autorisation|Obtenir des ressources de répertoire B2C dans un abonnement| |Autorisation|Obtenir un IDP personnalisé| |Autorisation|Obtenir un IDP| |Autorisation|Obtenir des applications V1 et V2| |Autorisation|Obtenir une application V1| |Autorisation|Obtenir des applications V1| |Autorisation|Obtenir une application V2| |Autorisation|Obtenir des applications V2| |Autorisation|Obtenir une ressource de répertoire B2C| |Autorisation|Obtenir une liste de domaines personnalisés dans le locataire| |Autorisation|Obtenir un parcours utilisateur| |Autorisation|Obtenir des réclamations de l’application autorisées pour le parcours utilisateur| |Autorisation|Obtenir des réclamations déclarées automatiquement autorisées pour le parcours utilisateur| |Autorisation|Obtenir des réclamations déclarées automatiquement autorisées pour la stratégie| |Autorisation|Obtenir la liste des revendications de sortie disponibles| |Autorisation|Obtenir les définitions de contenu pour le parcours utilisateur| |Autorisation|Obtenir des IDP pour un flux administrateur spécifique| |Autorisation|Obtenir les métadonnées de clé active du conteneur de clés au format JWK| |Autorisation|Obtenir une liste de tous les flux d’administration| |Autorisation|Obtenir une liste des balises de tous les flux d’administration pour l’ensemble des utilisateurs| |Autorisation|Obtenir une liste des locataires pour un utilisateur| |Autorisation|Obtenir des revendications déclarées automatiquement des comptes locaux| |Autorisation|Obtenir une ressource json localisée| |Autorisation|Obtenir des opérations du fournisseur de ressources Microsoft.AzureActiveDirectory| |Autorisation|Obtenir des stratégies| |Autorisation|Obtenir une stratégie| |Autorisation|Obtenir des propriétés de ressource d’un locataire| |Autorisation|Obtenir une liste d’IDP pris en charge| |Autorisation|Obtenir une liste d’IDP pris en charge du parcours utilisateur| |Autorisation|Obtenir des informations de locataire| |Autorisation|Obtenir des fonctionnalités autorisées de locataire| |Autorisation|Obtenir une liste d’IDP personnalisés définie par le locataire| |Autorisation|Obtenir une liste d’IDP définie par le locataire| |Autorisation|Obtenir une liste d’IDP locaux définie par le locataire| |Autorisation|Obtenir des informations sur un locataire pour un utilisateur afin de créer des ressources| |Autorisation|Obtenir une liste de locataires| |Autorisation|Obtenir tenantDomains| |Autorisation|Obtenir la culture par défaut prise en charge pour CPIM| |Autorisation|Obtenir les informations d’un flux d’administration| |Autorisation|Obtenir la liste des UserJourneys pour ce locataire| |Autorisation|Obtient l’ensemble des cultures disponibles prises en charge pour CPIM| |Autorisation|Obtenir une stratégie trustFramework| |Autorisation|Obtenir une stratégie trustFramework au format xml| |Autorisation|Obtenir un attribut utilisateur| |Autorisation|Obtenir des attributs utilisateur| |Autorisation|Obtenir une liste de parcours utilisateur| |Autorisation|GetIEFPolicies| |Autorisation|GetIdentityProviders| |Autorisation|GetTrustFrameworkPolicy| |Autorisation|Obtient un conteneur de clés CPIM au format jwk| |Autorisation|Obtient une liste de conteneurs de clés dans le locataire| |Autorisation|Obtient le type de locataire| |Autorisation|MigrateTenantMetadata| |Autorisation|Corriger un IdentityProvider| |Autorisation|PutTrustFrameworkPolicy| |Autorisation|PutTrustFrameworkpolicy| |Autorisation|Supprimer un parcours utilisateur| |Autorisation|Restaurer une sauvegarde de conteneur de clés CPIM| |Autorisation|Récupérer des autorisations de l’application V2| |Autorisation|Récupérer des principaux de service d’application V2 dans le locataire actuel| |Autorisation|Mettre à jour un IDP personnalisé| |Autorisation|Mettre à jour un IDP| |Autorisation|Mettre à jour un IDP local| |Autorisation|Mettre à jour une application V1| |Autorisation|Mettre à jour une application V2| |Autorisation|Mettre à jour une autorisation de l’application V2| |Autorisation|Mettre à jour la stratégie| |Autorisation|Mettre à jour un attribut utilisateur| |Autorisation|Charger une clé chiffrée CPIM| |Autorisation|Autorisation utilisateur : L'API est désactivée pour l'ensemble de fonctionnalités du locataire| |Autorisation|Autorisation utilisateur : Accès accordé à l'utilisateur en tant que « Tenant Admin »| |Autorisation|Autorisation utilisateur : Les droits d'accès « Authenticated Users » ont été accordés à l'utilisateur| |Autorisation|Vérifier si la fonctionnalité B2C est activée| |Autorisation|Vérifier si la fonctionnalité est activée| |Autorisation|Créer le programme| |Autorisation|Supprimer le programme| |Autorisation|Lier le contrôle du programme| |Autorisation|Intégrer les révisions d’accès Azure AD| |Autorisation|Supprimer le lien du contrôle du programme| |Autorisation|Mettre à jour le programme| |Autorisation|Désactiver l’authentification unique Bureau| |Autorisation|Désactiver l’authentification unique Bureau pour un domaine spécifique| |Autorisation|Désactiver le proxy d’application| |Autorisation|Désactiver l’authentification directe| |Autorisation|Activer l’authentification unique Bureau| |Gestion de répertoires|Activer l’authentification unique Bureau pour un domaine spécifique| |Gestion de répertoires|Activer le proxy d’application| |Gestion de répertoires|Activer l’authentification directe| |Gestion de répertoires|Créer un domaine personnalisé dans le locataire| |Gestion de répertoires|Activer la fonctionnalité B2C| |Gestion de répertoires|Obtenir une liste de domaines personnalisés dans le locataire| |Gestion de répertoires|Obtenir des propriétés de ressource d’un locataire| |Gestion de répertoires|Obtenir des informations de locataire| |Gestion de répertoires|Obtenir des fonctionnalités autorisées de locataire| |Gestion de répertoires|Obtenir tenantDomains| |Clé|Obtient le type de locataire| |Clé|Vérifier si la fonctionnalité B2C est activée| |Clé|Vérifier si la fonctionnalité est activée| |Clé|Ajouter un partenaire à l'entreprise| |Clé|Ajouter un domaine non vérifié| |Clé|Ajouter un domaine vérifié| |Clé|Créer une entreprise| |Clé|Création de paramètres d’entreprise.| |Clé|Suppression de paramètres d’entreprise.| |Clé|Rétrograder un partenaire| |Clé|Répertoire supprimé| |Autres|Répertoire supprimé définitivement| |Autres|Suppression du répertoire planifiée| |Ressource|Promouvoir une entreprise auprès d’un partenaire| |Ressource|Vider des propriétés de gestion des droits| |Ressource|Supprimer un partenaire d’une entreprise| |Ressource|Supprimer un domaine non vérifié| |Ressource|Supprimer un domaine vérifié| |Ressource|Définir les informations de l'entreprise| |Ressource|Définir la fonctionnalité DirSync| |Ressource|Définir l’indicateur DirSyncEnabled| |Ressource|Définition d’un partenariat| |Ressource|Définir un seuil de suppression accidentelle| |Ressource|Définir un emplacement de données autorisé| |Ressource|Définir l’activation de la fonctionnalité multinationale| |Ressource|Définir la fonctionnalité de répertoire sur un locataire| |Ressource|Définir l'authentification de domaine| |Ressource|Définir les paramètres de fédération du domaine| |Ressource|Définir une stratégie de mot de passe| |Ressource|Définir des propriétés de gestion des droits| |Ressource|Mettre à jour une entreprise| |Ressource|Mettre à jour des paramètres d’entreprise| |Ressource|Mettre à jour le domaine| |Ressource|Vérifier le domaine| |Ressource|Vérifier le domaine vérifié par courrier électronique| |Ressource|Mise en route| |Ressource|Mettre à jour des paramètres d’alerte| |Ressource|Mettre à jour des paramètres de synthèse hebdomadaire| |Ressource|Désactiver la réécriture de mot de passe pour un répertoire| |Ressource|Activer la réécriture de mot de passe pour un répertoire| |Ressource|Ajouter une attribution de rôle d’application à un groupe| |Ressource|Ajouter un groupe| |Ressource|Ajouter un membre à un groupe| |Ressource|Ajouter un propriétaire à un groupe| |Ressource|Créer des paramètres de groupe| |Ressource|Supprimer un groupe| |Ressource|Supprimer des paramètres de groupe| |Ressource|Terminer l’application d’une licence basée sur le groupe à des utilisateurs| |Ressource|Supprimer définitivement un groupe| |Ressource|Supprimer une attribution de rôle d’application d’un groupe| |Ressource|Supprimer un membre d’un groupe| |Ressource|Supprimer un propriétaire d’un groupe| |Ressource|Restaurer un groupe| |Ressource|Définir une licence de groupe| |Ressource|Définition d’un groupe à gérer par un utilisateur.| |Ressource|Commencer à appliquer une licence basée sur un groupe à des utilisateurs| |Ressource|Déclencher un nouveau calcul de licence de groupe| |Ressource|Mettre à jour un groupe| |Ressource|Mettre à jour des paramètres d’un groupe| |Ressource|Ajout d’un membre| |Ressource|Créer un groupe| |Ressource|Suppression d’un groupe| |Ressource|Suppression d’un membre| |Ressource|Mise à jour d’un groupe| |Ressource|Approuver une demande en attente pour rejoindre un groupe| |Ressource|Annuler une demande en attente pour rejoindre un groupe| |Ressource|Créer une stratégie de gestion du cycle de vie| |Ressource|Supprimer une demande en attente pour rejoindre un groupe| |Ressource|Rejeter une demande en attente pour rejoindre un groupe| |Ressource|Renouveler un groupe| |Ressource|Demander à rejoindre un groupe| |Ressource|Définir des propriétés de groupe dynamiques| |Ressource|Mettre à jour une stratégie de gestion du cycle de vie| |Ressource|Ajouter une clé basée sur un secret ASCII à un conteneur de clés CPIM| |Ressource|Ajouter une clé à un conteneur de clés CPIM| |Ressource|Supprimer un conteneur de clés CPIM| |Ressource|Supprimer un conteneur de clés| |Ressource|Obtenir les métadonnées de clé active du conteneur de clés au format JWK| |Ressource|Obtenir des métadonnées de conteneur de clés| |Ressource|Obtient un conteneur de clés CPIM au format jwk| |Ressource|Obtient une liste de conteneurs de clés dans le locataire| |Ressource|Restaurer une sauvegarde de conteneur de clés CPIM| |Ressource|Enregistrer un conteneur de clés| |Ressource|Charger une clé chiffrée CPIM| |Ressource|Émettre un code d’autorisation pour l’application| |Ressource|Émettre un id_token pour l’application| ## <a name="core-directory"></a>Répertoire principal |Catégorie d’audit|Activité| |---|---| |Gestion des unités administratives|Télécharger un seul type de détection d’événement à risque| |Gestion des unités administratives|Télécharger les administrateurs et l’état d’acceptation de synthèse hebdomadaire| |Gestion des unités administratives|Télécharger tous les types de détections d’événements à risque| |Gestion des unités administratives|Télécharger les détections d’événements à risque d’utilisateur gratuites| |Gestion des unités administratives|Télécharger les utilisateurs avec indicateur de risque| |Gestion des applications|Lot d’invitations traité| |Gestion des applications|Lot d’invitations chargé| |Gestion des applications|Ajouter un propriétaire à une stratégie| |Gestion des applications|Add policy| |Gestion des applications|Supprimer la stratégie| |Gestion des applications|Supprimer des informations d’identification de stratégie| |Gestion des applications|Mettre à jour la stratégie| |Gestion des applications|Définir la stratégie d’inscription MFA| |Gestion des applications|Définir une stratégie en matière de risque à la connexion| |Gestion des applications|Définir une stratégie en matière de risque d’utilisateur| |Gestion des applications|Accepter des conditions d’utilisation| |Gestion des applications|Créer des conditions d’utilisation| |Gestion des applications|Refuser des conditions d’utilisation| |Gestion des applications|Supprimer des conditions d’utilisation| |Gestion des applications|Modifier des conditions d’utilisation| |Gestion des applications|Publier des conditions d’utilisation| |Gestion des applications|Annuler la publication des conditions d’utilisation| |Gestion des applications|Ajouter le certificat SSL de l’application| |Gestion des applications|Supprimer une liaison SSL| |Gestion des applications|Inscrire le connecteur| |Gestion des applications|AdminPolicyDatas-RemoveResources| |Gestion des applications|AdminPolicyDatas-SetResources| |Gestion des applications|AdminUserJourneys-GetResources| |Gestion de répertoires|AdminUserJourneys-RemoveResources| |Gestion de répertoires|AdminUserJourneys-SetResources| |Gestion de répertoires|Créer un IdentityProvider| |Gestion de répertoires|Créer un AdminUserJourney| |Gestion de répertoires|Créer une ressource json localisée| |Gestion de répertoires|Créer un IDP personnalisé| |Gestion de répertoires|Créer un IDP| |Gestion de répertoires|Créer ou mettre à jour une ressource de répertoire B2C| |Gestion de répertoires|Créer une stratégie| |Gestion de répertoires|Créer une stratégie trustFramework| |Gestion de répertoires|Créer une stratégie trustFramework avec un préfixe configurable| |Gestion de répertoires|Créer un attribut utilisateur| |Gestion de répertoires|CreateTrustFrameworkPolicy| |Gestion de répertoires|Supprimer un IDP| |Gestion de répertoires|Supprimer un IdentityProvider| |Gestion de répertoires|Supprimer une ressource de répertoire B2C| |Gestion de répertoires|Supprimer une stratégie trustFramework| |Gestion de répertoires|Supprimer un attribut utilisateur| |Gestion de répertoires|Obtenir des ressources de répertoire B2C dans un groupe de ressources| |Gestion de répertoires|Obtenir des ressources de répertoire B2C dans un abonnement| |Gestion de répertoires|Obtenir un IDP personnalisé| |Gestion de répertoires|Obtenir un IDP| |Gestion de répertoires|Obtenir une ressource de répertoire B2C| |Gestion de répertoires|Obtenir un parcours utilisateur| |Gestion de répertoires|Obtenir des réclamations de l’application autorisées pour le parcours utilisateur| |Gestion de répertoires|Obtenir des réclamations déclarées automatiquement autorisées pour le parcours utilisateur| |Gestion de répertoires|Obtenir des réclamations déclarées automatiquement autorisées pour la stratégie| |Gestion de répertoires|Obtenir la liste des revendications de sortie disponibles| |Gestion de répertoires|Obtenir les définitions de contenu pour le parcours utilisateur| |Gestion de répertoires|Obtenir des IDP pour un flux administrateur spécifique| |Gestion de répertoires|Obtenir une liste de tous les flux d’administration| |Gestion de répertoires|Obtenir une liste des balises de tous les flux d’administration pour l’ensemble des utilisateurs| |Gestion des groupes|Téléchargement en bloc des membres du groupe - démarré| |Gestion des groupes|Téléchargement en bloc des membres du groupe - terminé| |Gestion des groupes|Importation en bloc des membres du groupe - démarré| |Gestion des groupes|Importation en bloc des membres du groupe - terminé| |Gestion des groupes|Suppression en bloc des membres du groupe - démarré| |Gestion des groupes|Suppression en bloc des membres du groupe - terminé| |Gestion des groupes|Téléchargement en bloc des groupes - démarré| |Gestion des groupes|Téléchargement en bloc des groupes - terminé| |Gestion des groupes|Obtenir une liste des locataires pour un utilisateur| |Gestion des groupes|Obtenir des revendications déclarées automatiquement des comptes locaux| |Gestion des groupes|Obtenir une ressource json localisée| |Gestion des groupes|Obtenir des opérations du fournisseur de ressources Microsoft.AzureActiveDirectory| |Gestion des groupes|Obtenir des stratégies| |Gestion des groupes|Obtenir une stratégie| |Gestion des groupes|Obtenir une liste d’IDP pris en charge| |Gestion des groupes|Obtenir une liste d’IDP pris en charge du parcours utilisateur| |Gestion des groupes|Obtenir une liste d’IDP personnalisés définie par le locataire| |Gestion des groupes|Obtenir une liste d’IDP définie par le locataire| |Gestion des groupes|Obtenir une liste d’IDP locaux définie par le locataire| |Gestion des groupes|Obtenir des informations sur un locataire pour un utilisateur afin de créer des ressources| |Gestion des groupes|Obtenir la culture par défaut prise en charge pour CPIM| |Gestion des groupes|Obtenir les informations d’un flux d’administration| |Gestion des groupes|Obtenir la liste des UserJourneys pour ce locataire| |Gestion des groupes|Obtient l’ensemble des cultures disponibles prises en charge pour CPIM| |Gestion des groupes|Obtenir une stratégie trustFramework| |Gestion des groupes|Obtenir une stratégie trustFramework au format xml| |Gestion des groupes|Obtenir un attribut utilisateur| |Gestion des stratégies|Obtenir des attributs utilisateur| |Gestion des stratégies|Obtenir une liste de parcours utilisateur| |Gestion des stratégies|GetIEFPolicies| |Gestion des stratégies|GetIdentityProviders| |Gestion des stratégies|GetTrustFrameworkPolicy| |Ressource|MigrateTenantMetadata| |Ressource|Déplacer des ressources| |Ressource|Corriger un IdentityProvider| |Ressource|PutTrustFrameworkPolicy| |Ressource|PutTrustFrameworkpolicy| |Ressource|Supprimer un parcours utilisateur| |Ressource|Mettre à jour un IDP personnalisé| |Ressource|Mettre à jour un IDP| |Ressource|Mettre à jour un IDP local| |Ressource|Mettre à jour une ressource de répertoire B2C| |Ressource|Mettre à jour la stratégie| |Ressource|Mettre à jour un état d’abonnement| |Gestion des rôles|Mettre à jour un attribut utilisateur| |Gestion des rôles|Valider le déplacement des ressources| |Gestion des rôles|Ajouter un appareil| |Gestion des rôles|Ajouter une configuration d’appareil| |Gestion des rôles|Ajouter un propriétaire enregistré à un appareil| |Gestion des rôles|Ajouter des utilisateurs enregistrés à un appareil| |Gestion des rôles|Supprimer un appareil| |Gestion des rôles|Supprimer la configuration de l’appareil| |Gestion des rôles|Un appareil n’est plus conforme| |Gestion des rôles|Un appareil n’est plus géré| |User Management|AccessReview_Review| |User Management|AccessReview_Update| |User Management|ActivationAborted| |User Management|ActivationApproved| |User Management|ActivationCanceled| |User Management|ActivationRequested| |User Management|Ajouter un membre éligible au rôle| |User Management|Ajouter un membre à un rôle| |User Management|Ajouter une attribution de rôle à une définition de rôle| |User Management|Ajouter un rôle à partir d’un modèle| |User Management|Ajouter un membre inclus dans une étendue à un rôle| |User Management|Ajouté| |User Management|Assigner| |User Management|Création d’utilisateurs en bloc - démarré| |User Management|Création d’utilisateurs en bloc - terminé| |User Management|Suppression d’utilisateurs en bloc - démarré| |User Management|Suppression d’utilisateurs en bloc - terminé| |User Management|Téléchargement en bloc des utilisateurs - démarré| |User Management|Téléchargement en bloc des utilisateurs - terminé| |User Management|Restauration d’utilisateurs supprimés en bloc - démarré| |User Management|Restauration d’utilisateurs supprimés en bloc - terminé| |User Management|Invitation en bloc d’utilisateurs - démarré| |User Management|Invitation en bloc des utilisateurs - terminé| |User Management|Supprimer un propriétaire enregistré d’un appareil| |User Management|Supprimer des utilisateurs enregistrés d’un appareil| |User Management|Supprimer un membre éligible d’un rôle| |User Management|Supprimer un membre d’un rôle| |User Management|Supprimer une attribution de rôle d’une définition de rôle| |User Management|Supprimer un membre inclus dans une étendue d’un rôle| |User Management|Mettre à jour un appareil| |User Management|Mettre à jour une configuration d’appareil| |User Management|Mettre à jour un rôle| ## <a name="identity-protection"></a>Identity Protection |Catégorie d’audit|Activité| |---|---| |Gestion de répertoires|Élever| |Gestion de répertoires|Supprimé| |Gestion de répertoires|Modifications des paramètres de rôle| |Autres|ScanAlertsNow| |Autres|Connecter| |Autres|Baisser les privilèges| |Autres|UpdateAlertSettings| |Autres|UpdateCurrentState| |Gestion des stratégies|Révision d’accès terminée| |Gestion des stratégies|Ajouter un approbateur pour approuver une demande| |Gestion des stratégies|Ajouter un réviseur pour la révision d’accès| |User Management|Appliquer une révision d’accès| |User Management|Créer une révision d’accès| ## <a name="invited-users"></a>Utilisateurs invités |Catégorie d’audit|Activité| |---|---| |Autres|Créer une approbation de demande| |Autres|Supprimer une révision d’accès| |User Management|Supprimer un réviseur pour la révision d’accès| |User Management|Demander l’application du résultat de révision| |User Management|Demander l’arrêt de la révision| |User Management|Examiner l’affectation d’application| |User Management|Examiner l’appartenance au groupe| |User Management|Examiner l’appartenance au rôle Rbac| ## <a name="microsoft-identity-manager-mim"></a>Microsoft Identity Manager (MIM) |Catégorie d’audit|Activité| |---|---| |Gestion des groupes|Examiner la demande d’approbation de demande| |Gestion des groupes|Mettre à jour une révision d’accès| |Gestion des groupes|Mettre à jour les paramètres de notification par e-mail pour la révision d’accès| |Gestion des groupes|Mettre à jour le paramètre de nombre de la périodicité de révision de l’accès| |Gestion des groupes|Mettre à jour le paramètre de durée de la périodicité de révision de l’accès en jours| |User Management|Mettre à jour le paramètre de type de fin de la périodicité de révision de l’accès| |User Management|Mettre à jour le paramètre de type de la périodicité de révision de l’accès| ## <a name="privileged-identity-management"></a>Privileged Identity Management |Catégorie d’audit|Activité| |---|---| |PIM|ActivationAborted| |PIM|ActivationApproved| |PIM|ActivationCanceled| |PIM|ActivationDenied| |PIM|ActivationRequested| |PIM|Ajouté| |PIM|AddedOutsidePIM| |PIM|Assigner| |PIM|DismissAlert| |PIM|Élever| |PIM|ReactivateAlert| |PIM|Supprimé| |PIM|RemovedOutsidePIM| |PIM|Demander l’arrêt de la révision| |PIM|Modifications des paramètres de rôle| |PIM|ScanAlertsNow| |PIM|Connecter| |PIM|Annuler l'assignation| |PIM|Baisser les privilèges| |PIM|UpdateAlertSettings| |PIM|UpdateCurrentState| ## <a name="self-service-group-management"></a>Gestion des groupes en libre service |Catégorie d’audit|Activité| |---|---| |Gestion des groupes|Réinitialiser le mot de passe de l'utilisateur| |Gestion des groupes|Restaurer un utilisateur| |Gestion des groupes|Définir le mot de passe utilisateur| |Gestion des groupes|Définir un gestionnaire d’utilisateurs| |Gestion des groupes|Définir l’activation des métadonnées de jeton oath d’utilisateurs| |Gestion des groupes|Mettre à jour un timestamp StsRefreshTokenValidFrom| |Gestion des groupes|Mise à jour de clés secrètes externes.| |Gestion des groupes|Mettre à jour l'utilisateur| |Gestion des groupes|Un administrateur génère un mot de passe temporaire| ## <a name="self-service-password-management"></a>Gestion des mots de passe en libre-service |Catégorie d’audit|Activité| |---|---| |Gestion de répertoires|L’administrateur demande à l’utilisateur de réinitialiser son mot de passe| |Gestion de répertoires|Assigner un utilisateur externe à une application| |User Management|E-mail non envoyé, utilisateur désabonné| |User Management|Inviter un utilisateur externe| |User Management|Utiliser une invitation d’utilisateur externe| |User Management|Création d’un locataire viral| |User Management|Création d’un utilisateur viral| |User Management|Enregistrement de mot de passe utilisateur| |User Management|Réinitialisation de mot de passe utilisateur| |User Management|Blocage suite à une réinitialisation de mot de passe en libre-service| ## <a name="terms-of-use"></a>Conditions d’utilisation |Catégorie d’audit|Activité| |---|---| |Conditions d’utilisation|Accepter des conditions d’utilisation| |Conditions d’utilisation|Créer des conditions d’utilisation| |Conditions d’utilisation|Refuser des conditions d’utilisation| |Conditions d’utilisation|Supprimer le consentement| |Conditions d’utilisation|Supprimer des conditions d’utilisation| |Conditions d’utilisation|Modifier des conditions d’utilisation| |Conditions d’utilisation|Expiration des conditions d’utilisation| |Conditions d’utilisation|Supprimer définitivement des conditions d’utilisation| |Conditions d’utilisation|Publier des conditions d’utilisation| |Conditions d’utilisation|Annuler la publication des conditions d’utilisation| ## <a name="next-steps"></a>Étapes suivantes - [Vue d’ensemble des rapports Azure AD](overview-reports.md). - [Rapport de journaux d’audit](concept-audit-logs.md) - [Accès par programmation aux rapports Azure AD](concept-reporting-api.md)
52.596184
213
0.818366
fra_Latn
0.962158
d9e734c35508a351ea12251668eb9fb34f244bec
4,031
md
Markdown
1-server_unit/Ansible_Settings_Instruction.md
masahirompp/ansible
6251ff838ffbeefe6102666b2fc3cfc4173ce06d
[ "Apache-2.0" ]
null
null
null
1-server_unit/Ansible_Settings_Instruction.md
masahirompp/ansible
6251ff838ffbeefe6102666b2fc3cfc4173ce06d
[ "Apache-2.0" ]
null
null
null
1-server_unit/Ansible_Settings_Instruction.md
masahirompp/ansible
6251ff838ffbeefe6102666b2fc3cfc4173ce06d
[ "Apache-2.0" ]
null
null
null
# Ansible setup instruction ------------------------------------------------- ## Introduction This is the setup document to launch Personium unit by ansible. Part 1 (Initial Configuration) must be completed, where Part 2 (Tuning Personium) modification is optional, based on the developers requirement. Below are the files where modification is required. ### Part 1 : Initial Configuration :white_check_mark: * **Items to be set initially** * all elements inside `/static_inventory/hosts` file enclosed with `{}`, replace with the constructed server configuration. * Example ```yaml ansible_ssh_user={Ansible_Execution_User} # should be changed to ansible_ssh_user=root ``` * Modify the hosts file as per instruction below #### Common Server Setting ```yaml {Ansible_Execution_User} # -> Specify a user ansible execution # EX: {Ansible_Execution_User}->root {SSH_PrivateKey} # -> Set the secret key in the absolute path for ansible user ssh public key authentication # EX: {SSH_PrivateKey}->/root/.ssh/id_rsa {Master_Token} # -> To authorize all kind of operation, set the master token (Strictly managed) # EX: {Master_Token}->abc123 {Personium_FQDN} # -> Specify the FQDN for Personium server(same as unit FQDN) # EX: {Personium_FQDN}->ec2-54-65-33-203.ap-northeast-1.compute.amazonaws.com {Path_Based_Cell_Url_Enabled} # -> URL format to access cell*1 # -> true:path based cell url # -> false:per cell fqdn url # EX: {Path_Based_Cell_Url_Enabled}->false ``` *1.For explanation about URL format to access cell, please confirm [here](https://personium.io/docs/ja/server-operator/setup_percell.html). #### Bastion server ```yaml {Bastion_Private_IP} # -> Specify the private IP of Bastion server # EX: {Bastion_Private_IP}->172.31.10.248 {Bastion_Tag_Name} # -> Specify the host name for Bastion server # EX: {Bastion_Tag_Name}->bastion-web ``` #### Personium server ```yaml {Personium_Private_IP} # -> Specify the private IP of Personium server # EX: {Personium_Private_IP}->172.31.13.38 {Personium_Tag_Name} # -> Specify the host name for AP server # EX: {Personium_Tag_Name}->test-ap ``` ### Part 2 (Tuning Personium) :white_check_mark: * **Item to be set upon ansible execution(File destination : /group_vars/[group name].yml)** * As an option, changing the recorded values of all .yml files under group_vars directory is possible. But basically, no modification is required unless server tuning is necessary. * By specifying the git branch name of personium_core and personium_engine in /group_vars/bastion.yml, you can build by specifying the version of Personium.(Default is master) #### Web server (file destination : /group_vars/web.yml) ```yaml tag_ServerType: web nginx_version: 1.14.2 nginx_hm_version: 0.33 ``` #### AP server (file destination : /group_vars/ap.yml) ```yaml tag_ServerType: ap tomcat_xms: 512m tomcat_xmx: 512m tomcat_metaspace_size: 256m tomcat_max_metaspace_size: 256m lock_host: 127.0.0.1 lock_port: 11211 cache_host: 127.0.0.1 cache_port: 11212 cache_manager: memcached tomcat_version: 9.0.27 commons_daemon_version : 1.2.2 activemq_version: 5.15.8 ``` #### ES server (file destination : /group_vars/es.yml) ```yaml tag_ServerType: es version: 6.6.1 es_heapsize: 1875 ``` #### NFS server (file destination : /group_vars/nfs.yml) ```yaml tag_ServerType: nfs memcached_version: 1.5.12 memcached_lock_maxconn: 256 memcached_cache_maxconn: 256 # lock / cache instance cache_in_nfs: true lock_port: 11211 cache_port: 11212 # memcached cachesize memcached_lock_cachesize: 512 memcached_cache_cachesize: 512 ``` #### Bastion server (file destination : /group_vars/bastion.yml) ```yaml tag_ServerType: bastion personium_core_version : master personium_engine_version : master ``` ## Summary In this document we tried to explain what are the file we require you to modify before executing ansible and build Personium unit. Please use this document as reference.
23.300578
208
0.733069
eng_Latn
0.818628
d9e771bd21ac1b909d8d2cff732e208735a4baf5
1,965
md
Markdown
README.md
frimley-baptist-church/chromium-kiosk
13abcc9111731c2cd05211580caaea0974a7ef33
[ "MIT" ]
1
2021-11-06T16:52:46.000Z
2021-11-06T16:52:46.000Z
README.md
frimley-baptist-church/chromium-taskstation
13abcc9111731c2cd05211580caaea0974a7ef33
[ "MIT" ]
null
null
null
README.md
frimley-baptist-church/chromium-taskstation
13abcc9111731c2cd05211580caaea0974a7ef33
[ "MIT" ]
null
null
null
# chromium-taskstation Chromium Taskstation / Kiosk for Ubuntu Server 20.04 This is a debian package that turns an Ubuntu Server installation into a single-purpose machine auto-running Chromium. It does not include any desktop environment, rather, it adds the bare minimum to run Chromium full screen: * X11 Server * Ratpoison - a minimalist window manager ## Installation procedure **Download Ubuntu Server 20.04** * Download this file to your machine https://releases.ubuntu.com/20.04.3/ubuntu-20.04.3-live-server-amd64.iso * Grab an 4GB or larger USB storage device and use https://www.balena.io/etcher/ to install the `.iso` file on the storage device. **Warning: You will loose any files on the storage device!** **Install Ubuntu Server on the PC** * Connect the PC to a working Ethernet port. * Place the USB device in the machine, power up and choose to boot from the USB device labelled Ubuntu Server 20.04.3 and proceed to install Ubuntu. It will take a while so be patient. If you're not familiar with installing Ubuntu Linux, please consult the internet. **Install the Chromium Taskstation application** * Login to the unit, which should remain connected to the internet, and execute the following: ``` $ sudo -i # apt update # apt dist-upgrade # apt install wget # wget https://frimley-baptist-church.github.io/chromium-taskstation/chromium-taskstation-1.0.deb # dpkg -i chromium-taskstation-1.0.deb ``` During the installation you will be asked for web page address that you want your taskstation/kiosk to use as it's home page. After the installation and configuration are complete, if all is well, the PC should be ready for action. At this point you can hit the power button on the machine to shut the computer off. This usually takes 10 seconds or so, with lots of scrolling text to watch as it performs this action. **Testing the setup** * Hit the power button, sit back and watch. * You should eventually see your chosen home page.
47.926829
291
0.773028
eng_Latn
0.993771
d9e837ae72e149ee310d7985606cc23369a6911f
792
md
Markdown
README.md
Dobot-Arm/TCP-IP-Android
d96fd52d2e1e08782fcf409c0d1c02ea85e23346
[ "MIT" ]
null
null
null
README.md
Dobot-Arm/TCP-IP-Android
d96fd52d2e1e08782fcf409c0d1c02ea85e23346
[ "MIT" ]
null
null
null
README.md
Dobot-Arm/TCP-IP-Android
d96fd52d2e1e08782fcf409c0d1c02ea85e23346
[ "MIT" ]
null
null
null
English version of the README -> please [click here](./README-EN.md) ## 关于版本匹配说明 此Demo适用于CR系列的V3.5.2及以上控制器版本。 ## DEMO说明文档 本demo为Java 编写的给Android手机或平板使用TCP方式控制Dobot协作机器人CR(以下简称CR)的DEMO ## DEMO系统要求 Android 4.3版本以上即可 ## 工程文件说明 工程文件需要使用Android Studio打开,请使用4.0版本的Android Studio 工程文件目录下分为四个模块分别为app、socket-client、socket-common-interface、socket-core。其中app为demo的主要模块,用于对CR的TCP通讯协议的封装以及实现部分简单的功能交互,如上使能、清除报警、急停、点动、MovJ和修改IO等功能。剩下的模块为实现TCP通讯功能的Socket客户端的底层实现。 在app包内主要分为Client、Message和RobotState模块,分别对应了TCP客户端的实现,TCP通讯协议的封装和机器人状态的实时封装。 * Client中实现了三个Client对应了CR三个端口和三种形式的消息协议。APIClient对应了29999端口,实现了一个一发一收的应答客户端。MoveClient对应了30003端口,只进行发送工作对应了CR的运动指令。StateClient对应了30004端口只进行接受机器人的状态协议。 * Message则为CR的各种发送的消息封装,分为基础的BaseMessage和CRMessage. * RobotState则是对30004端口返回的数据进行了封装,用于生成各种CR的参数。
36
178
0.862374
yue_Hant
0.753364
d9e85a09d0e0e87e3349394884b37139d3f8667c
1,473
md
Markdown
includes/widgets/changelog-widget/README.md
LaxarApps/changelog-viewer-client
844a59ed8c6e8f3d1e060822affc03b6e9cf77bf
[ "MIT" ]
1
2015-11-17T12:57:23.000Z
2015-11-17T12:57:23.000Z
includes/widgets/changelog-widget/README.md
LaxarApps/changelog-viewer-client
844a59ed8c6e8f3d1e060822affc03b6e9cf77bf
[ "MIT" ]
19
2015-10-26T14:03:40.000Z
2016-02-23T13:56:08.000Z
includes/widgets/changelog-widget/README.md
LaxarApps/changelog-viewer-client
844a59ed8c6e8f3d1e060822affc03b6e9cf77bf
[ "MIT" ]
null
null
null
# changelog-widget > Display a list of repositories with changelogs. ## Content * [Usage](#usage) * [References](#references) ## Usage ### Installation For installation instruction take a look at the [LaxarJS documentation](https://github.com/LaxarJS/laxar/blob/master/docs/manuals/installing_widgets.md). ### Configuration example ```json { "widget": "changelog-widget", "features": { "categories": { "resource": "categories" }, "repository": { "action": "getRepository" } } } ``` Use this configuration on a page to get a ChangelogWidget instance. The widget expects a configured `categories.resource` and a configured `repository.action`. The resource must include a list with categories, groups and repositories. With the `repository.action` the widget requests the releases with changelog of a specific repository. For full configuration options refer to the [widget.json](widget.json). ## References The following resources are useful or necessary for the understanding of this document. The links refer to the latest version of the documentation. Refer to the [bower.json](./bower.json) for the specific version that is relevant for this document. * [LaxarJS Concepts] * [LaxarJS Patterns] [LaxarJS Concepts]: https://github.com/LaxarJS/laxar/blob/master/docs/concepts.md "LaxarJS Concepts" [LaxarJS Patterns]: https://github.com/LaxarJS/laxar-patterns/blob/master/docs/index.md "LaxarJS Patterns"
27.792453
153
0.73795
eng_Latn
0.941746
d9e8bfff4249bf6b1ef57f24ade418cf1a005f63
851
md
Markdown
docs/api/DbExtensions/SqlBuilder/SetCurrentClause.md
maxtoroq/DbExtensions
f1ca8c2b9d64ad27713c4f7df0f6d62fa152f71d
[ "Apache-2.0" ]
180
2015-01-19T02:32:58.000Z
2022-03-18T07:33:31.000Z
docs/api/DbExtensions/SqlBuilder/SetCurrentClause.md
maxtoroq/DbExtensions
f1ca8c2b9d64ad27713c4f7df0f6d62fa152f71d
[ "Apache-2.0" ]
54
2015-01-01T13:18:59.000Z
2022-03-12T02:57:22.000Z
docs/api/DbExtensions/SqlBuilder/SetCurrentClause.md
maxtoroq/DbExtensions
f1ca8c2b9d64ad27713c4f7df0f6d62fa152f71d
[ "Apache-2.0" ]
50
2015-01-08T17:48:28.000Z
2021-12-16T12:11:32.000Z
SqlBuilder.SetCurrentClause Method ================================== Sets *clauseName* as the current SQL clause. **Namespace:**  [DbExtensions][1] **Assembly:**  DbExtensions (in DbExtensions.dll) Syntax ------ ```csharp public SqlBuilder SetCurrentClause( string clauseName, string separator ) ``` #### Parameters ##### *clauseName* Type: [System.String][2] The SQL clause. ##### *separator* Type: [System.String][2] The clause body separator, used for consecutive appends to the same clause. #### Return Value Type: [SqlBuilder][3] A reference to this instance after the operation has completed. See Also -------- #### Reference [SqlBuilder Class][3] [DbExtensions Namespace][1] [SqlBuilder.CurrentClause][4] [1]: ../README.md [2]: http://msdn.microsoft.com/en-us/library/s1wwdcbf [3]: README.md [4]: CurrentClause.md
19.790698
75
0.668625
eng_Latn
0.297572
d9e8ce591d4132a2f9c39a25986bfce67707d284
6,332
md
Markdown
examples/aishell3/voc1/README.md
gongel/DeepSpeech
84ea04638622dcd6a5e2fef8bf2edd50b90f4f52
[ "Apache-2.0" ]
null
null
null
examples/aishell3/voc1/README.md
gongel/DeepSpeech
84ea04638622dcd6a5e2fef8bf2edd50b90f4f52
[ "Apache-2.0" ]
null
null
null
examples/aishell3/voc1/README.md
gongel/DeepSpeech
84ea04638622dcd6a5e2fef8bf2edd50b90f4f52
[ "Apache-2.0" ]
null
null
null
# Parallel WaveGAN with AISHELL-3 This example contains code used to train a [parallel wavegan](http://arxiv.org/abs/1910.11480) model with [AISHELL-3](http://www.aishelltech.com/aishell_3). AISHELL-3 is a large-scale and high-fidelity multi-speaker Mandarin speech corpus which could be used to train multi-speaker Text-to-Speech (TTS) systems. ## Dataset ### Download and Extract the datasaet Download AISHELL-3. ```bash wget https://www.openslr.org/resources/93/data_aishell3.tgz ``` Extract AISHELL-3. ```bash mkdir data_aishell3 tar zxvf data_aishell3.tgz -C data_aishell3 ``` ### Get MFA result of AISHELL-3 and Extract it We use [MFA2.x](https://github.com/MontrealCorpusTools/Montreal-Forced-Aligner) to get durations for aishell3_fastspeech2. You can download from here [aishell3_alignment_tone.tar.gz](https://paddlespeech.bj.bcebos.com/MFA/AISHELL-3/with_tone/aishell3_alignment_tone.tar.gz), or train your own MFA model reference to [use_mfa example](https://github.com/PaddlePaddle/PaddleSpeech/tree/develop/examples/other/use_mfa) (use MFA1.x now) of our repo. ## Get Started Assume the path to the dataset is `~/datasets/data_aishell3`. Assume the path to the MFA result of AISHELL-3 is `./aishell3_alignment_tone`. Run the command below to 1. **source path**. 2. preprocess the dataset, 3. train the model. 4. synthesize wavs. - synthesize waveform from `metadata.jsonl`. ```bash ./run.sh ``` ### Preprocess the dataset ```bash ./local/preprocess.sh ${conf_path} ``` When it is done. A `dump` folder is created in the current directory. The structure of the dump folder is listed below. ```text dump ├── dev │ ├── norm │ └── raw ├── test │ ├── norm │ └── raw └── train ├── norm ├── raw └── feats_stats.npy ``` The dataset is split into 3 parts, namely `train`, `dev` and `test`, each of which contains a `norm` and `raw` subfolder. The `raw` folder contains log magnitude of mel spectrogram of each utterances, while the norm folder contains normalized spectrogram. The statistics used to normalize the spectrogram is computed from the training set, which is located in `dump/train/feats_stats.npy`. Also there is a `metadata.jsonl` in each subfolder. It is a table-like file which contains id and paths to spectrogam of each utterance. ### Train the model ```bash CUDA_VISIBLE_DEVICES=${gpus} ./local/train.sh ${conf_path} ${train_output_path} ``` `./local/train.sh` calls `${BIN_DIR}/train.py`. Here's the complete help message. ```text usage: train.py [-h] [--config CONFIG] [--train-metadata TRAIN_METADATA] [--dev-metadata DEV_METADATA] [--output-dir OUTPUT_DIR] [--ngpu NGPU] [--verbose VERBOSE] [--batch-size BATCH_SIZE] [--max-iter MAX_ITER] [--run-benchmark RUN_BENCHMARK] [--profiler_options PROFILER_OPTIONS] Train a ParallelWaveGAN model. optional arguments: -h, --help show this help message and exit --config CONFIG config file to overwrite default config. --train-metadata TRAIN_METADATA training data. --dev-metadata DEV_METADATA dev data. --output-dir OUTPUT_DIR output dir. --ngpu NGPU if ngpu == 0, use cpu. --verbose VERBOSE verbose. benchmark: arguments related to benchmark. --batch-size BATCH_SIZE batch size. --max-iter MAX_ITER train max steps. --run-benchmark RUN_BENCHMARK runing benchmark or not, if True, use the --batch-size and --max-iter. --profiler_options PROFILER_OPTIONS The option of profiler, which should be in format "key1=value1;key2=value2;key3=value3". ``` 1. `--config` is a config file in yaml format to overwrite the default config, which can be found at `conf/default.yaml`. 2. `--train-metadata` and `--dev-metadata` should be the metadata file in the normalized subfolder of `train` and `dev` in the `dump` folder. 3. `--output-dir` is the directory to save the results of the experiment. Checkpoints are save in `checkpoints/` inside this directory. 4. `--ngpu` is the number of gpus to use, if ngpu == 0, use cpu. ### Synthesize `./local/synthesize.sh` calls `${BIN_DIR}/synthesize.py`, which can synthesize waveform from `metadata.jsonl`. ```bash CUDA_VISIBLE_DEVICES=${gpus} ./local/synthesize.sh ${conf_path} ${train_output_path} ${ckpt_name} ``` ```text usage: synthesize.py [-h] [--config CONFIG] [--checkpoint CHECKPOINT] [--test-metadata TEST_METADATA] [--output-dir OUTPUT_DIR] [--ngpu NGPU] [--verbose VERBOSE] Synthesize with parallel wavegan. optional arguments: -h, --help show this help message and exit --config CONFIG parallel wavegan config file. --checkpoint CHECKPOINT snapshot to load. --test-metadata TEST_METADATA dev data. --output-dir OUTPUT_DIR output dir. --ngpu NGPU if ngpu == 0, use cpu. --verbose VERBOSE verbose. ``` 1. `--config` parallel wavegan config file. You should use the same config with which the model is trained. 2. `--checkpoint` is the checkpoint to load. Pick one of the checkpoints from `checkpoints` inside the training output directory. If you use the pretrained model, use the `snapshot_iter_1000000.pdz `. 3. `--test-metadata` is the metadata of the test dataset. Use the `metadata.jsonl` in the `dev/norm` subfolder from the processed directory. 4. `--output-dir` is the directory to save the synthesized audio files. 5. `--ngpu` is the number of gpus to use, if ngpu == 0, use cpu. ## Pretrained Models Pretrained models can be downloaded here [pwg_aishell3_ckpt_0.5.zip](https://paddlespeech.bj.bcebos.com/Parakeet/pwg_aishell3_ckpt_0.5.zip). Parallel WaveGAN checkpoint contains files listed below. ```text pwg_aishell3_ckpt_0.5 ├── default.yaml # default config used to train parallel wavegan ├── feats_stats.npy # statistics used to normalize spectrogram when training parallel wavegan └── snapshot_iter_1000000.pdz # generator parameters of parallel wavegan ``` ## Acknowledgement We adapted some code from https://github.com/kan-bayashi/ParallelWaveGAN.
43.07483
389
0.691251
eng_Latn
0.898166
d9e8e3b3f96a882db6baa7f4a1aec795e931a452
4,390
md
Markdown
windows-apps-src/design/globalizing/use-utf8-code-page.md
dplotnikov/windows-uwp
8b4c1fdfef21925d372287901ab33441068e1a80
[ "CC-BY-4.0", "MIT" ]
null
null
null
windows-apps-src/design/globalizing/use-utf8-code-page.md
dplotnikov/windows-uwp
8b4c1fdfef21925d372287901ab33441068e1a80
[ "CC-BY-4.0", "MIT" ]
null
null
null
windows-apps-src/design/globalizing/use-utf8-code-page.md
dplotnikov/windows-uwp
8b4c1fdfef21925d372287901ab33441068e1a80
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- Description: Use UTF-8 character encoding for optimal compatibility between web apps and other *nix-based platforms (Unix, Linux, and variants), minimize localization bugs, and reduce testing overhead. title: Use the Windows UTF-8 code page template: detail.hbs ms.date: 06/12/2019 ms.topic: article keywords: windows 10, uwp, globalization, localizability, localization ms.localizationpriority: medium --- # Use the UTF-8 code page Use [UTF-8](http://www.utf-8.com/) character encoding for optimal compatibility between web apps and other *nix-based platforms (Unix, Linux, and variants), minimize localization bugs, and reduce testing overhead. UTF-8 is the universal code page for internationalization and supports all Unicode code points using 1-4 byte variable-width encoding. It is used pervasively on the web, and is the default for *nix-based platforms. ## -A vs. -W APIs Win32 APIs often support both -A and -W variants. -A variants recognize the ANSI code page configured on the system and support char*, while -W variants operate in UTF-16 and support `WCHAR`. Until recently, Windows has emphasized "Unicode" -W variants over -A APIs. However, recent releases have used the ANSI code page and -A APIs as a means to introduce UTF-8 support to apps. If the ANSI code page is configured for UTF-8, -A APIs operate in UTF-8. This model has the benefit of supporting existing code built with -A APIs without any code changes. ## Set a process code page to UTF-8 You can force a process to use UTF-8 as the process code page through the appxmanifest for packaged apps, or the fusion manifest for unpackaged apps using the ActiveCodePage property. You can declare this property and target/run on earlier Windows builds, but you must handle legacy code page detection and conversion as usual (with a minimum target version of 19H1, the process code page will always be UTF-8). ## Examples **Appx manifest for a packaged app:** ```xaml <?xml version="1.0" encoding="utf-8"?> <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" ... xmlns:uap7="http://schemas.microsoft.com/appx/manifest/uap/windows10/7" xmlns:uap8="http://schemas.microsoft.com/appx/manifest/uap/windows10/8" ... IgnorableNamespaces="... uap7 uap8 ..."> <Applications> <Application ...> <uap7:Properties> <uap8:ActiveCodePage>UTF-8</uap8:ActiveCodePage> </uap7:Properties> </Application> </Applications> </Package> ``` **Fusion manifest for an unpackaged Win32 app:** ``` xaml <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1"> <assemblyIdentity type="win32" name="..." version="6.0.0.0"/> <application> <windowsSettings> <activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage> </windowsSettings> </application> </assembly> ``` > [!NOTE] > Add a manifest to an existing executable from the command line with `mt.exe -manifest <MANIFEST> -outputresource:<EXE>;#1` ## Code page conversion As Windows operates natively in UTF-16 (WCHAR), you might need to convert UTF-8 data to UTF-16 (or vice versa) to interoperate with Windows APIs. [MultiByteToWideChar](https://docs.microsoft.com/windows/desktop/api/stringapiset/nf-stringapiset-multibytetowidechar) and [WideCharToMultiByte](https://docs.microsoft.com/windows/desktop/api/stringapiset/nf-stringapiset-widechartomultibyte) let you convert between UTF-8 and UTF-16 (WCHAR) (and other code pages). This is particularly useful when a legacy Win32 API might only understand WCHAR. These functions allow you to convert UTF-8 input to WCHAR to pass into a -W API and then convert any results back if necessary. When using these functions in Windows with CodePage CP_UTF8, use dwFlags of either 0 or MB_ERR_INVALID_CHARS, otherwise an ERROR_INVALID_FLAGS occurs. Note: CP_ACP equates to CP_UTF8 only if running on Windows Version 1903 (May 2019 Update) and the ActiveCodePage property described above is set to UTF-8. Otherwise, it honors the legacy system code page. We recommend using CP_UTF8 explicitly. ## Related topics - [Code pages](https://docs.microsoft.com/windows/desktop/Intl/code-pages) - [Code Page Identifiers](https://docs.microsoft.com/windows/desktop/Intl/code-page-identifiers)
52.261905
523
0.757175
eng_Latn
0.925641
d9e93493728a11fb003d4022274dabcbd212dbf0
3,297
md
Markdown
README.md
imbottlebird/sport_analytics-lasso-xgboost
89231845aee65e6e1ce9c9236831b4b1f9b63b26
[ "CECILL-B" ]
null
null
null
README.md
imbottlebird/sport_analytics-lasso-xgboost
89231845aee65e6e1ce9c9236831b4b1f9b63b26
[ "CECILL-B" ]
null
null
null
README.md
imbottlebird/sport_analytics-lasso-xgboost
89231845aee65e6e1ce9c9236831b4b1f9b63b26
[ "CECILL-B" ]
null
null
null
# Moneyball Analytics Here the salaries of baseball players were predicted based on the dataset that contains information on 263 players from the MLB in 1986. Three predictive analysis techniques were used for comparison, discussed in the following structure. 1. Data Exploration 2. Linear Regression 3. Ridge Regression and LASSO 4. XGBOOST ## Data Exploration Let's first extract only the numerical predictors from the dataset to look at their correlations between each other.<br /> ```bash hitters_raw <- read.csv("Hitters.csv") hitters_num <-hitters_raw[,2:18] ggcorrplot(round(cor(hitters_num),1), method="circle", tl.col = "black", tl.cex = 15, lab=TRUE) ``` <p align="center"> <img src="./img/1.a_1.png" width="300" align='middle'> </p> The correlation matrix forms two box clusters based on the seasonal (lower-left) and career-long (upper-right) performance stats; the later shows a stronger correlation than the former. Based on the matrix, CRuns (Number of runs in the career) and CRBI (RBI: Number runs enabled in the career) are the most correlated predictors to the salary. Note that this may not necessarily imply causation. There are several possible explanations: (a) A influences B; (b) B influences A; and (c) A and B are influenced by one or more additional variables. <br /><br /> Now let's look at the p-values between the salary and other predictors. ```bash lm.mod <- lm(Salary ~., data = hitters_num) summary(lm.mod) ``` <p align="center"> <img src="./img/1.a_p.png" width="300" align='middle'> </p> The predictors with the 95%-level significance are AtBat, Hits, Walks, CRuns, CWalks, and PutOuts, which could indicate their strong influences on the salary. ## Linear Regression Based on the EDA (Exploratory Data Analysis), CRBI, AtBat, Hits, Walks, CRuns, CWalks, and PutOuts are considered important to the salary. Before building a linear regression model with these predictors, let's first normalize the data to align data features in a same scale of importance. ```bash #Normalize and split data pp <- preProcess(hitters_raw, method=c("center", "scale")) Hitters <- predict(pp, hitters_raw) set.seed(15071) train.obs <- sort(sample(seq_len(nrow(Hitters)), 0.7*nrow(Hitters))) train <- Hitters[train.obs,2:21] test <- Hitters[-train.obs,2:21] #Fit a restricted Linear Regression with variables with significance head(train) lin.mod <- lm(Salary ~ CRBI+AtBat+Hits+Walks+CRuns+CWalks+PutOuts, data = train) pred.train = predict(lin.mod, newdata = train) #Out-of-Sample R-squared pred.test = predict(lin.mod, newdata = test) SSE.test = sum((pred.test - test$Salary)^2) SST.test = sum((test$Salary - mean(train$Salary))^2) OSR2 = 1 - SSE.test/SST.test ``` ### **Prediction Accuracy** |Model|In-sample R-squared|Out-of-sample R-squared| |--|--|--| |Unrestricted model |**0.5603**|0.4003593| |Restricted model |0.5163| **0.4742655**| The unrestricted model trained with all variables performs better with in-sample data, whereas the restricted model with variables with significance outperforms in predicting the out-of-sample data by avoiding the overfitting. ## Ridge Regression and LASSO i) Train Ridge regression and LASSO models with 10-fold cross-validation Plots of cross-validated Mean Squared Error as a function of l:
42.269231
343
0.746436
eng_Latn
0.979914
d9ea2abe483061996e33664596e976ee6db8e311
14,870
md
Markdown
docs/sharepoint/overview-of-the-programming-model-of-sharepoint-tools-extensions.md
MicrosoftDocs/visualstudio-docs.tr-tr
ff0c41f814d042e7d4a0e457839db4a191a59f81
[ "CC-BY-4.0", "MIT" ]
7
2018-09-14T23:12:51.000Z
2021-08-22T21:23:28.000Z
docs/sharepoint/overview-of-the-programming-model-of-sharepoint-tools-extensions.md
huriyilmaz/visualstudio-docs.tr-tr
9459e8aaaeb3441455be384a2b011dbf306ce691
[ "CC-BY-4.0", "MIT" ]
7
2018-07-20T23:01:49.000Z
2021-04-15T20:00:12.000Z
docs/sharepoint/overview-of-the-programming-model-of-sharepoint-tools-extensions.md
huriyilmaz/visualstudio-docs.tr-tr
9459e8aaaeb3441455be384a2b011dbf306ce691
[ "CC-BY-4.0", "MIT" ]
22
2018-01-11T11:53:37.000Z
2022-03-06T16:38:31.000Z
--- title: SharePoint araç uzantılarının programlama modeline genel bakış titleSuffix: '' description: Uygulama araçları uzantılarının programlama modeline SharePoint bakışını okuyun. Genişletilebilirlik arabirimleri uygulama. Nesne modellerini anlama. ms.custom: SEO-VS-2020 ms.date: 02/02/2017 ms.topic: conceptual dev_langs: - VB - CSharp helpviewer_keywords: - Visual Studio, extending tools - SharePoint development in Visual Studio, extensibility object models - SharePoint development in Visual Studio, extending tools author: John-Hart ms.author: johnhart manager: jmartens ms.technology: sharepoint-development ms.workload: - office ms.openlocfilehash: f96c991315483ab4aa8c3764ba9415cf67077a1d ms.sourcegitcommit: b12a38744db371d2894769ecf305585f9577792f ms.translationtype: MT ms.contentlocale: tr-TR ms.lasthandoff: 09/13/2021 ms.locfileid: "126725645" --- # <a name="overview-of-the-programming-model-of-sharepoint-tools-extensions"></a>SharePoint araçları uzantılarının programlama modeline genel bakış Visual Studio'da SharePoint araçları için bir uzantı sanız, SharePoint araçları tarafından ortaya konulan bir veya daha fazla genişletilebilirlik arabirimini uygulamanız gerekir. Çoğu durumda, uzantınıza özellikler uygulamak için SharePoint araçları tarafından sağlanan diğer türleri de kullanırsanız. Bazı senaryolarda, uygulama ve uygulama tarafından sağlanan diğer nesne modellerinde Visual Studio SharePoint. Bu nesne modellerinin her biri için amacını anlamanız ve bu modellerin farklı araçlar için uzantılar oluşturmak üzere nasıl SharePoint gerekir. ## <a name="extend-the-sharepoint-tools-by-implementing-extensibility-interfaces"></a>Genişletilebilirlik arabirimlerini SharePoint araçları genişletme Visual Studio, Managed Extensibility Framework araçları için genişletilebilirlik modelini sağlamak için .NET Framework 4'te SharePoint kullanır. MEF, uygulamaların genişletilebilirlik noktalarını ortaya çıkararak çalışma zamanında uzantıları bulmasını ve yüklemesini sağlayan bir API'dir (System.ComponentModel.Composition derlemesinde uygulanır). MEF hakkında daha fazla bilgi için [bkz. Managed Extensibility Framework &#40;MEF&#41;. ](/dotnet/framework/mef/index) Uygulama araçlarını SharePoint için, uygulama tarafından ortaya konulan bir veya daha fazla genişletilebilirlik arabirimi Visual Studio. Ayrıca arabirim uygulamanıza , ve SharePoint araçlara özgü öznitelikleri de <xref:System.ComponentModel.Composition.ExportAttribute> uygulatabilirsiniz. Aşağıdaki tabloda, uygulama araçlarını genişletmek için uygulay SharePoint listele. |Arabirim|Description| |---------------|-----------------| |<xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectItemTypeProvider>|Yeni bir proje öğesi türü tanımlamak için SharePoint gerçekleştirin. Bir örnek için, [bkz. Nasıl kullanılır: Proje SharePoint türü için bir örnek tanımlama.](../sharepoint/how-to-define-a-sharepoint-project-item-type.md)| |<xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectItemTypeExtension>|Uygulama içinde zaten yüklü olan bir SharePoint proje öğesi türünü genişletmek için bu arabirimi Visual Studio. Bir örnek için [bkz. Nasıl kullanılır: Proje SharePoint uzantısı oluşturma.](../sharepoint/how-to-create-a-sharepoint-project-item-extension.md)| |<xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectExtension>|Projelerini genişletmek için bu SharePoint gerçekleştirin. Bir örnek için, [bkz. Nasıl 100 SharePoint 000000000000000000000000000000000000000000](../sharepoint/how-to-create-a-sharepoint-project-extension.md)| |<xref:Microsoft.VisualStudio.SharePoint.Deployment.IDeploymentStep>|Bu arabirimi, bir proje öğesi dağıtıldığında veya geri çekıldığında yürütül SharePoint yeni bir dağıtım adımı tanımlamak için kullanın. Bir örnek için [bkz. Adım adım: Proje oluşturmak için özel SharePoint oluşturma.](../sharepoint/walkthrough-creating-a-custom-deployment-step-for-sharepoint-projects.md)| |<xref:Microsoft.VisualStudio.SharePoint.Explorer.IExplorerNodeTypeExtension>|Sunucu Gezgini penceresindeki Bağlantılar düğümü altındaki **mevcut SharePoint** genişletmek için bu **Sunucu Gezgini** kullanın. Bir örnek için, [bkz. Nasıl Sunucu Gezgini' SharePoint.](../sharepoint/how-to-extend-a-sharepoint-node-in-server-explorer.md)| |<xref:Microsoft.VisualStudio.SharePoint.Explorer.IExplorerNodeTypeProvider>|Sunucu Gezgini penceresindeki Bağlantılar düğümü altında **yeni SharePoint** türü tanımlamak için **bu Sunucu Gezgini** kullanın. Bir örnek için, [bkz. Nasıl Sunucu Gezgini' SharePoint.](../sharepoint/how-to-extend-a-sharepoint-node-in-server-explorer.md)| |<xref:Microsoft.VisualStudio.SharePoint.Validation.IFeatureValidationRule>|Özel özellik doğrulama kuralı tanımlamak için bu arabirimi kullanın. Bir örnek için, [bkz. How to: Create custom feature and package validation rules for SharePoint çözümleri.](../sharepoint/how-to-create-custom-feature-and-package-validation-rules-for-sharepoint-solutions.md)| |<xref:Microsoft.VisualStudio.SharePoint.Validation.IPackageValidationRule>|Özel bir paket doğrulama kuralı tanımlamak için bu arabirimi uygulama. Bir örnek için, [bkz. How to: Create custom feature and package validation rules for SharePoint çözümleri.](../sharepoint/how-to-create-custom-feature-and-package-validation-rules-for-sharepoint-solutions.md)| SharePoint araçlarının bir uzantısını uygulamaya verdikten sonra, uzantıyı bulmak ve yüklemek için Visual Studio uzantısı (VSIX) paketinde Visual Studio derlemesini dağıtmanız gerekir. Daha fazla bilgi için [bkz. SharePoint'de Visual Studio.](../sharepoint/deploying-extensions-for-the-sharepoint-tools-in-visual-studio.md) ## <a name="understand-the-object-models-that-you-use-in-sharepoint-tools-extensions"></a>Uygulama araçları uzantılarında kullanılan nesne SharePoint anlama Uygulama araçları için uzantılar oluştururken kullanabileceğiniz çeşitli nesne SharePoint vardır: - *SharePoint araçları nesne modeli.* Bu nesne modeli, SharePoint araçları uzantıları ve diğer ilgili türleri oluşturmak için uygulayan genişletilebilirlik arabirimleri sağlar. - *Visual Studio otomasyon ve tümleştirme nesne modellerini içerir.* Bu nesne modellerini kullanarak Visual Studio araçları nesne modelinin kapsamının dışında olan SharePoint erişin. > [!NOTE] > SharePoint araçları nesne modelinde bazı nesneleri Visual Studio otomasyon ve tümleştirme nesne modellerinde nesnelere dönüştürebilirsiniz ve tam tersi için SharePoint proje hizmeti. Daha fazla bilgi için bkz. SharePoint proje sistemi türleri [ile diğer Visual Studio arasında dönüştürme.](../sharepoint/converting-between-sharepoint-project-system-types-and-other-visual-studio-project-types.md) - *SharePoint ve istemci nesne modellerini kullanın.* Bir siteyi değiştirmek veya SharePoint araçları uzantısı bağlamından bir SharePoint siteden veri almak için bu SharePoint kullanın. ### <a name="sharepoint-tools-object-model"></a>SharePoint araçları nesne modeli Her SharePoint araçları uzantısı, uzantının temel davranışını ve işlevselliğini tanımlamak için SharePoint araçları nesne modelinde türleri kullanır. Aşağıdaki tablolar, bunları içeren derleme tarafından bu nesne modeline dahil edilen ad alanlarını açıklar. #### <a name="microsoftvisualstudiosharepointdll"></a>Microsoft.VisualStudio.SharePoint.dll |Ad Alanı|Description| |-|-| |<xref:Microsoft.VisualStudio.SharePoint>|Proje sistemini genişletmek ve otomatikleştirmek için SharePoint içerir. Örneğin, yerleşik proje ve SharePoint genişletebilirsiniz veya kendi proje öğelerinizi oluşturabilirsiniz. Daha fazla bilgi için [bkz. SharePoint sistemini genişletme.](../sharepoint/extending-the-sharepoint-project-system.md)| |<xref:Microsoft.VisualStudio.SharePoint.Deployment>|Kendi dağıtım adımlarınızı ve dağıtım yapılandırmalarınızı oluşturma gibi SharePoint projelerinin dağıtım sürecini genişletmek için kullanabileceğiniz türleri içerir. Daha fazla bilgi için [bkz. Paketleme ve SharePoint genişletme.](../sharepoint/extending-sharepoint-packaging-and-deployment.md)| |<xref:Microsoft.VisualStudio.SharePoint.Explorer>|Sunucu Gezgini penceresindeki SharePoint **Düğümü** altında düğümleri genişletmek veya yeni düğüm türleri tanımlamak için kullanabileceğiniz türleri içerir. Daha fazla bilgi için [bkz. SharePoint'de bağlantı düğümünü Sunucu Gezgini.](../sharepoint/extending-the-sharepoint-connections-node-in-server-explorer.md)| |<xref:Microsoft.VisualStudio.SharePoint.Features>|Bir SharePoint projesinde Özellik tanımlarına erişmek için SharePoint içerir.| |<xref:Microsoft.VisualStudio.SharePoint.Packages>|Bir çözümde paket tanımına erişmek için SharePoint içerir.| |<xref:Microsoft.VisualStudio.SharePoint.Validation>|Projelerde özellik ve paket doğrulama davranışını özelleştirmek için SharePoint içerir. Daha fazla bilgi için, [bkz. How to: Create custom feature and package validation rules for SharePoint .](../sharepoint/how-to-create-custom-feature-and-package-validation-rules-for-sharepoint-solutions.md)| #### <a name="microsoftvisualstudiosharepointcommandsdll"></a>Microsoft.VisualStudio.SharePoint.Commands.dll |Ad Alanı|Description| |-|-| |<xref:Microsoft.VisualStudio.SharePoint.Commands>|özel komutlarını oluşturmak için kullanabileceğiniz *türleri SharePoint içerir.* Bir SharePoint, bir SharePoint araçları uzantısından SharePoint sunucu nesne modeline çağıran bir yöntemdir. Daha fazla bilgi için [bkz. SharePoint nesne modellerine çağırma.](../sharepoint/calling-into-the-sharepoint-object-models.md)| #### <a name="microsoftvisualstudiosharepointexplorerextensionsdll"></a>Microsoft.VisualStudio.SharePoint.Explorer.Extensions.dll |Ad Alanı|Description| |-|-| |<xref:Microsoft.VisualStudio.SharePoint.Explorer.Extensions>|Bir SharePoint sitesinde tek tek bileşenleri temsil eden yerleşik Sunucu Gezgini düğümler hakkında bilgi almak için kullanabileceğiniz türleri (liste, alan veya içerik türünü temsil eden bir düğüm gibi) içerir. Daha fazla bilgi için [bkz. SharePoint'de bağlantı düğümünü Sunucu Gezgini.](../sharepoint/extending-the-sharepoint-connections-node-in-server-explorer.md)| ### <a name="visual-studio-automation-object-model"></a>Visual Studio otomasyon nesne modeli Otomasyon Visual Studio modeli, projeleri ve IDE'leri otomatikleştirmek için Visual Studio API'ler sağlar. Visual Studio projelerine özgü olmayan projeyle ilgili görevleri gerçekleştirmek veya SharePoint diğer genel otomasyon görevlerini gerçekleştirmek için Visual Studio. Geleneksel olarak, bu nesne modeli genellikle Visual Studio ve makrolarda kullanılır, ancak bu modeli diğer araç SharePoint de kullanabilirsiniz. Otomasyon nesne modelinin Visual Studio bölümü, derleme derlemesinde *EnvDTE.dll* tanımlanır. *EnvDTE \\ \<version>.dll* derlemeleri, derlemelerin belirli sürümlerinde tanıtılacak ek Visual Studio. Bu derlemeler, Visual Studio. Otomasyon nesne modeli hakkında daha fazla bilgi için [bkz. Visual Studio SDK Başvurusu.](../extensibility/visual-studio-sdk-reference.md) ### <a name="visual-studio-integration-object-model"></a>Visual Studio tümleştirme nesne modeli Tümleştirme nesnesi modeli, vsPackage oluşturarak Visual Studio eklemek için kullanabileceğiniz *API'ler sağlar.* VSPackage, araç pencereleri, düzenleyiciler, tasarımcılar, Visual Studio ve projeler gibi özel özellikler sağlayarak IDE'yi genişleten bir modüldür. Yerleşik SharePoint araçlarıyla birlikte kullanılacak yeni bir Visual Studio eklemek için tümleştirme nesne modelini SharePoint kullanabilirsiniz. Örneğin, SharePoint sitesi için özel bir eylemi temsil eden özel bir SharePoint proje öğesi oluşturmanız, özel eylem için tasarımcı uygulayan bir VSPackage da oluşturabilirsiniz. tasarımcıyı özel eylemle ilişkilendirmek için proje öğesinin içinde özel eylemi temsil eden bir kısayol menü öğesi **Çözüm Gezgini.** Tasarımcınızı açmak için kısayol menüsünü açabilir (özel eylem proje öğesini sağ tıklayarak veya seçerek ve shift F10 tuşlarını seçerek) ve ardından + Aç'ı **seçebilirsiniz.** Bu nesne modeli, Visual Studio SDK'sı ile birlikte bir derleme kümesinde tanımlanır. Bu nesne modelinde ana derlemelerden bazıları , *Microsoft.VisualStudio.Shell.11.0.dll*, *Microsoft.VisualStudio.Shell.Interop.dll* ve *Microsoft.VisualStudio.OLE.Interop.dll.* Tümleştirme nesne modeli hakkında daha fazla bilgi için bkz. [Otomasyon Modeline Genel Bakış](../extensibility/internals/automation-model-overview.md) ve Visual Studio SDK [Başvurusu.](../extensibility/visual-studio-sdk-reference.md) ### <a name="sharepoint-object-models"></a>SharePoint modellerini oluşturma SharePoint araçları uzantıları, SharePoint bir siteyi değiştirmek veya SharePoint siteden veri almak için SharePoint kullanabilir. [!INCLUDE[wss_14_long](../sharepoint/includes/wss-14-long-md.md)] ve [!INCLUDE[moss_14_long](../sharepoint/includes/moss-14-long-md.md)] iki farklı nesne modeli sağlar: sunucu nesne modeli ve istemci nesne modeli. API'leri bir SharePoint araçları uzantısında herhangi bir nesne modelinde kullanabilirsiniz, ancak her nesne modelinin SharePoint araçları uzantıları bağlamında bazı avantajları ve dezavantajları vardır. Daha fazla bilgi için [bkz. SharePoint nesne modellerine çağırma.](../sharepoint/calling-into-the-sharepoint-object-models.md) |Nesne modeli|Description| |------------------|-----------------| |Sunucu nesne modeli|Sunucu nesne modeli, [!INCLUDE[wss_14_long](../sharepoint/includes/wss-14-long-md.md)] programlı olarak kullanıma sunulacak tüm özelliklere erişim sağlar [!INCLUDE[moss_14_long](../sharepoint/includes/moss-14-long-md.md)] . bu nesne modeli, SharePoint sunucusunda çalışan SharePoint çözümleri tarafından kullanılmak üzere tasarlanmıştır. Bu nesne modelinin çoğunluğu *Microsoft.SharePoint.dll* derlemesinde tanımlanmıştır. sunucu nesne modeli hakkında daha fazla bilgi için bkz. [SharePoint Foundation Server-Side nesne modelini kullanma](/previous-versions/office/developer/sharepoint-2010/ee538251(v=office.14)).| |İstemci nesne modeli|istemci nesne modeli, uzak bir istemciden veya sunucudan SharePoint verileriyle birlikte çalışmak için kullanılabilen sunucu nesne modelinin bir alt kümesidir. Ortak görevleri gerçekleştirmek üzere yürütülmesi gereken gidiş dönüş sayısını en aza indirmek için tasarlanmıştır. İstemci nesne modelinin çoğunluğu *Microsoft.SharePoint.Client.dll* ve *Microsoft.SharePoint.Client.Runtime.dll* derlemelerinde tanımlanmıştır. İstemci nesne modeli hakkında daha fazla bilgi için bkz. [yönetilen Istemci nesne modeli](/previous-versions/office/developer/sharepoint-2010/ee537247(v=office.14)).| ## <a name="see-also"></a>Ayrıca bkz. - [Visual Studio SharePoint araçlarını genişletme](../sharepoint/extending-the-sharepoint-tools-in-visual-studio.md) - [SharePoint nesne modellerine çağrı](../sharepoint/calling-into-the-sharepoint-object-models.md) - [SharePoint kullanın proje hizmeti](../sharepoint/using-the-sharepoint-project-service.md)
127.094017
636
0.825622
tur_Latn
0.999434
d9ea586cfec1d97881ff67a70c6d9a03e52a366f
36
md
Markdown
CHANGELOG.md
cuborubo/ivory-serializer
a5a12f8ca251ef36e9fb5a162f6888df9e8deda9
[ "MIT" ]
30
2016-09-19T01:23:58.000Z
2020-10-29T12:14:14.000Z
CHANGELOG.md
cuborubo/ivory-serializer
a5a12f8ca251ef36e9fb5a162f6888df9e8deda9
[ "MIT" ]
17
2016-09-18T20:56:11.000Z
2021-02-04T19:40:53.000Z
CHANGELOG.md
cuborubo/ivory-serializer
a5a12f8ca251ef36e9fb5a162f6888df9e8deda9
[ "MIT" ]
21
2017-01-31T08:58:12.000Z
2021-09-14T13:18:10.000Z
# CHANGELOG ### 1.0.0 (2017-02-27)
9
22
0.555556
yue_Hant
0.388683
d9eb1f099d30d513a1726263ffd0a278846f1404
42
md
Markdown
README.md
EdiJunior88/cartao_de_visitas
41f4993c6037e5f3176a8b2920662c2eb7a948de
[ "MIT" ]
1
2022-01-23T11:13:06.000Z
2022-01-23T11:13:06.000Z
README.md
EdiJunior88/cartao_de_visitas
41f4993c6037e5f3176a8b2920662c2eb7a948de
[ "MIT" ]
null
null
null
README.md
EdiJunior88/cartao_de_visitas
41f4993c6037e5f3176a8b2920662c2eb7a948de
[ "MIT" ]
null
null
null
# cartao_de_visitas projeto em andamento
10.5
20
0.833333
por_Latn
0.99985
d9ebd8b41b12ae2eb2c7057f7fd5d9cc42895653
5,252
md
Markdown
README.md
ladisk/sdPy
3ac9efb15473fa2eb8669215c286f371a229fb62
[ "MIT" ]
3
2020-06-22T17:48:07.000Z
2021-09-25T06:34:15.000Z
README.md
RahulSundar/sdPy
e91d3043083a647aa85be933430665e916e44141
[ "MIT" ]
null
null
null
README.md
RahulSundar/sdPy
e91d3043083a647aa85be933430665e916e44141
[ "MIT" ]
5
2020-06-22T14:44:59.000Z
2021-06-26T18:37:23.000Z
# sdPy Structural Dynamics with Python This repository contains the course material for the ["High-speed Image Based Experimental Modal Analysis &amp; Open Source Tools"](http://www.ladisk.si/imageEMATutorial.php) online course. # How to follow the course The course material is organised into two interactive Notebooks, where the participants can actively follow the instructors' examples, as well as explore the provided source code. In this repository, a [Jupyter Notebooks](https://jupyter.org/) template is provided for each planned activity. These are interactive documents, that contain useful information and written instructions, as well as runnable source code for the examples provided by the instructors. These templates should be [downloaded](#download) to your machine prior to the courses, where they will serve as a guide for our work, as well as a convenient way for you to take notes. # <a name="download"></a>How to download the course material You can download the whole repository as a .zip archive by clicking the "Clone or download" button on the top right. <a name="clone"></a>If you have already [installed the required software](#install), you can set up your local repository, linked directly to this online source, by using the following command: ```cmd $ git clone https://github.com/ladisk/sdPy.git ``` in a comand prompt / terminal window in your local directory where you want the course material to be saved. # <a name="install"></a>Installation To run the Jupyter Notebook templates, provided in this repository, you will need to install the Python programming language, as well as its `jupyter` and `notebook` packages. 1. The simplest way of doing this is by installing the [Anaconda distribution of Python](https://www.anaconda.com/products/individual#download-section) (select the latest version of Python 3 for your operating system). With Anaconda you will also get most of the other Python packages we will be using during this course. Once Anaconda is installed, you can open Jupyter Notebook by running the following command in the command prompt / terminal window in your local directory containing the `.ipynb` files: ```cmd $ jupyter notebook ``` ![Jupyter notebook GIF](./figures/jupyter_notebook_gif.gif) 2. Another tool you might find useful when accessing the course material is the [Git](https://git-scm.com/) version control system. To start using Git, you should [download](https://git-scm.com/downloads) and install the Git client and [set it up with you user information](https://help.github.com/en/articles/setting-your-username-in-git). You are now ready to [clone](#clone) this repository to your local machine! # <a name="getting-started"></a>Getting started with Python After you've installed a distribution of Python it might be useful to get familiar with the Python programming language. [Scipy lecture notes](http://scipy-lectures.org/index.html) are a great resource for aspiring Python users, focused more on the scientific community. Sections [1.1](http://scipy-lectures.org/intro/intro.html) and [1.2](http://scipy-lectures.org/intro/language/python_language.html) of Scipy lecture notes will provide more than enough info to get you started. If you want to learn even more about Python, you will find countless tutorials available online, but the [official Python tutorial](https://docs.python.org/3/tutorial/index.html) is a good place to start. You can also find many more great resources in the [official Python beginners guide](https://wiki.python.org/moin/BeginnersGuide). ## Python for Matlab users Many researchers and engineers learning Python come from a background of Matlab or a similar commercial software package. A lot of effort has gone into making this transition as simple as possible. The [Scipy](https://www.scipy.org/) project includes all the tools required to make Python a powerful alternative to most comercially available numerical packages. If you are an experienced Matlab user, the [NumPy for Matlab users](https://numpy.org/doc/stable/user/numpy-for-matlab-users.html) page contains important information to quickly get you started. # <a name="online-course"></a>Short course on Python for structural dynamics Here you can find the interactive templates for our [free online course on High-speed Image Based EMA and Open Source Tools](http://www.ladisk.si/imageEMATutorial.php). Once you're familiar with the basics of Python programming, you can follow our course material using Juypter Notebook: 1. [Open-source Python tools for structural dynamics](Part%201%20-%20Open-source%20Python%20tools%20for%20structural%20dynamics.ipynb) (to be finalized by the 29th of June 2020) 2. [High-speed based EMA powered by open-source Python tools](Part%202%20-%20High-speed%20based%20EMA%20powered%20by%20open-source%20Python%20tools.ipynb) (to be finalized by the 29th of June 2020) **Note:** the [data](./data/) and [figures](./figures/) directories contain the data and figures, used throughout this course. These directories should be downloaded and located in the same folder than the course templates on your local machine. If you used Git to clone this repository, this was done automatically.
67.333333
358
0.782559
eng_Latn
0.996022
d9ec56b2ddf3aae33dfe172196b44b1208496611
14,304
md
Markdown
articles/dms/known-issues-troubleshooting-dms-source-connectivity.md
pmsousa/azure-docs.pt-pt
bc487beff48df00493484663c200e44d4b24cb18
[ "CC-BY-4.0", "MIT" ]
15
2017-08-28T07:46:17.000Z
2022-02-03T12:49:15.000Z
articles/dms/known-issues-troubleshooting-dms-source-connectivity.md
pmsousa/azure-docs.pt-pt
bc487beff48df00493484663c200e44d4b24cb18
[ "CC-BY-4.0", "MIT" ]
407
2018-06-14T16:12:48.000Z
2021-06-02T16:08:13.000Z
articles/dms/known-issues-troubleshooting-dms-source-connectivity.md
pmsousa/azure-docs.pt-pt
bc487beff48df00493484663c200e44d4b24cb18
[ "CC-BY-4.0", "MIT" ]
17
2017-10-04T22:53:31.000Z
2022-03-10T16:41:59.000Z
--- title: Problemas que ligam bases de dados de origem titleSuffix: Azure Database Migration Service description: Saiba como resolver problemas/erros associados à ligação do Serviço de Migração da Base de Dados Azure às bases de dados de origem. services: database-migration author: pochiraju ms.author: rajpo manager: craigg ms.reviewer: craigg ms.service: dms ms.workload: data-services ms.custom: seo-lt-2019 ms.topic: troubleshooting ms.date: 02/20/2020 ms.openlocfilehash: edc420cb1e79ed6d99a55524764cb164bd2edaf5 ms.sourcegitcommit: 32e0fedb80b5a5ed0d2336cea18c3ec3b5015ca1 ms.translationtype: MT ms.contentlocale: pt-PT ms.lasthandoff: 03/30/2021 ms.locfileid: "105641350" --- # <a name="troubleshoot-dms-errors-when-connecting-to-source-databases"></a>Resolver problemas de erros do DMS ao ligar às bases de dados de origem O seguinte artigo fornece detalhes sobre como lidar com potenciais problemas que poderá encontrar ao ligar o Serviço de Migração de Bases de Dados (DMS) da Azure Database Service (DMS) à sua base de dados fonte. Cada secção abaixo diz respeito a um tipo específico de base de dados de origem, enumerando o erro que poderá encontrar juntamente com detalhes e ligações a informações sobre como resolver problemas na conectividade. ## <a name="sql-server"></a>SQL Server Os potenciais problemas associados à ligação a uma base de dados do SQL Server de origem e como endereçá-los são fornecidos na tabela seguinte. | Erro | Detalhes de causa e resolução de problemas | | ------------- | ------------- | | A ligação SQL falhou. Ocorreu um erro relacionado com a rede ou específico da instância ao estabelecer uma ligação ao SQL Server. O servidor não foi encontrado ou não está acessível. Verifique se o nome da instância está correto e que o SQL Server está configurado para permitir ligações remotas.<br> | Este erro ocorre se o serviço não conseguir localizar o servidor de origem. Para resolver o problema, consulte o artigo [Erro de ligação ao Servidor SQL de origem ao utilizar uma porta dinâmica ou uma instância nomeada](./known-issues-troubleshooting-dms.md#error-connecting-to-source-sql-server-when-using-dynamic-port-or-named-instance). | | **Erro 53** - A ligação SQL falhou. (Também, para os códigos de erro 1, 2, 5, 53, 233, 258, 1225, 11001)<br><br> | Este erro ocorre se o serviço não conseguir ligar-se ao servidor de origem. Para resolver o problema, consulte os seguintes recursos e, em seguida, tente novamente. <br><br> [Guia interativo do utilizador para resolver problemas na questão da conectividade](https://support.microsoft.com/help/4009936/solving-connectivity-errors-to-sql-server)<br><br> [Pré-requisitos para migrar o SQL Server para a Base de Dados Azure SQL](./pre-reqs.md#prerequisites-for-migrating-sql-server-to-azure-sql-managed-instance) <br><br> [Pré-requisitos para migrar o SQL Server para uma instância gerida Azure SQL](./pre-reqs.md#prerequisites-for-migrating-sql-server-to-azure-sql-managed-instance) | | **Erro 18456** - O início de sessão falhou.<br> | Este erro ocorre se o serviço não conseguir ligar-se à base de dados de origem utilizando as credenciais T-SQL fornecidas. Para resolver o problema, verifique as credenciais inscritas. Também pode consultar [MSSQLSERVER_18456](/sql/relational-databases/errors-events/mssqlserver-18456-database-engine-error) ou os documentos de resolução de problemas listados na nota abaixo desta tabela e, em seguida, tentar novamente. | | Valor mal formado do nome de conta {0} ' fornecido. Formato esperado para Nome de Conta é Nome de Domínio\UserName<br> | Este erro ocorre se o utilizador selecionar a autenticação do Windows, mas fornecer o nome de utilizador num formato inválido. Para resolver o problema, forneça o nome de utilizador no formato correto para a autenticação do Windows ou selecione **A autenticação SQL**. | ## <a name="aws-rds-mysql"></a>AWS RDS MySQL Os potenciais problemas associados à ligação a uma base de dados AWS RDS MySQL de origem e como endereçá-los são fornecidos na tabela seguinte. | Erro | Detalhes de causa e resolução de problemas | | ------------- | ------------- | | **Error [2003]**[HY000] - a ligação falhou. ERROR [HY000] [MySQL][ODBC x.x(w) driver] Não é possível ligar-se ao servidor MySQL em '{server}' (10060) | Este erro ocorre se o controlador MySQL ODBC não conseguir ligar-se ao servidor de origem. Para resolver o problema, consulte os documentos de resolução de problemas listados na nota abaixo desta tabela e, em seguida, tente novamente.<br> | | **Error [2005]**[HY000] - a ligação falhou. ERROR [HY000] [MySQL][ODBC x.x(w) driver] Unknown MySQL server host '{server}' | Este erro ocorre se o serviço não encontrar o hospedeiro de origem em RDS. A questão pode ser porque a fonte listada não existe ou há um problema com a infraestrutura RDS. Para resolver o problema, consulte os documentos de resolução de problemas listados na nota abaixo desta tabela e, em seguida, tente novamente.<br> | | **Error [1045]**[HY000] - a ligação falhou. ERROR [HY000] [MySQL][ODBC x.x(w) driver] Acesso negado para utilizador '{user}'@'{server}' (usando a palavra-passe: SIM) | Este erro ocorre se o controlador MySQL ODBC não conseguir ligar-se ao servidor de origem devido a credenciais inválidas. Verifique as credenciais que inseriu. Se o problema continuar, verifique se o computador de origem tem as credenciais corretas. Pode ser necessário redefinir a palavra-passe na consola. Se ainda encontrar o problema, consulte os documentos de resolução de problemas listados na nota abaixo desta tabela e tente novamente.<br> | | **Error [9002]**[HY000] - a ligação falhou. ERROR [HY000] [MySQL][ODBC x.x(w) driver] A cadeia de ligação pode não estar certa. Visite o portal para referências.| Este erro ocorre se a ligação estiver a falhar devido a um problema com a cadeia de ligação. Verifique se a cadeia de ligação fornecida é válida. Para resolver o problema, consulte os documentos de resolução de problemas listados na nota abaixo desta tabela e, em seguida, tente novamente.<br> | | **Erro na exploração madeireira binária. Binlog_format variável tem valor '{value}'. Por favor, mude para "row".** | Este erro ocorre se houver um erro na exploração madeireira binária; a variável binlog_format tem o valor errado. Para resolver o problema, altere o binlog_format em grupo de parâmetros para 'ROW', e, em seguida, reinicie a instância. Para obter mais informações, consulte as [opções e variáveis de registo binário ou](https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html) a [documentação dos ficheiros de registo de base de dados do MySQL MSQL](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.Concepts.MySQL.html).<br> | > [!NOTE] > Para obter mais informações sobre problemas relacionados com a ligação a uma base de dados MSQL AWS RDS DE origem, consulte os seguintes recursos: > * [Resolução de problemas para problemas de conectividade RDS Da Amazon](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Troubleshooting.html#CHAP_Troubleshooting.Connecting) > * [Como resolvo problemas ligados à minha página da base de dados da Amazon RDS?](https://aws.amazon.com/premiumsupport/knowledge-center/rds-cannot-connect) ## <a name="aws-rds-postgresql"></a>AWS RDS PostgreSQL Os potenciais problemas associados à ligação a uma base de dados postgresQL de fonte AWS RDSQL e como endereçá-los são fornecidos na tabela seguinte. | Erro | Detalhes de causa e resolução de problemas | | ------------- | ------------- | | **Error [101]**[08001] - a ligação falhou. ERROR [08001] timeout expirou. | Este erro ocorre se o controlador Postgres não conseguir ligar-se ao servidor de origem. Para resolver o problema, consulte os documentos de resolução de problemas listados na nota abaixo desta tabela e, em seguida, tente novamente. | | **Erro: O wal_level de parâmetro tem valor '{value}'. Por favor, altere-o para "lógico" para permitir a replicação.** | Este erro ocorre se o parâmetro wal_level tiver o valor errado. Para resolver o problema, altere o rds.logical_replication no grupo de parâmetros para 1 e, em seguida, reinicie a instância. Para obter mais informações, consulte [os pré-requisitos para a migração para Azure PostgreSQL utilizando DMS](./tutorial-postgresql-azure-postgresql-online.md#prerequisites) ou [PostgreSQL na Amazon RDS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html). | > [!NOTE] > Para obter mais informações sobre problemas relacionados com a ligação a uma base de dados postgresQL de fonte AWS RDSQL, consulte os seguintes recursos: > * [Resolução de problemas para problemas de conectividade RDS Da Amazon](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Troubleshooting.html#CHAP_Troubleshooting.Connecting) > * [Como resolvo problemas ligados à minha página da base de dados da Amazon RDS?](https://aws.amazon.com/premiumsupport/knowledge-center/rds-cannot-connect) ## <a name="aws-rds-sql-server"></a>Servidor AWS RDS SQL Os potenciais problemas associados à ligação a uma base de dados do Servidor AWS RDS SQL de origem e como endereçá-los são fornecidos na tabela seguinte. | Erro | Detalhes de causa e resolução de problemas | | ------------- | ------------- | | **Erro 53** - A ligação SQL falhou. Ocorreu um erro relacionado com a rede ou específico da instância ao estabelecer uma ligação ao SQL Server. O servidor não foi encontrado ou não estava acessível. Verifique se o nome da instância está correto e que o SQL Server está configurado para permitir ligações remotas. (fornecedor: Fornecedor de tubos nomeado, erro: 40 - Não foi possível abrir uma ligação ao SQL Server | Este erro ocorre se o serviço não conseguir ligar-se ao servidor de origem. Para resolver o problema, consulte os documentos de resolução de problemas listados na nota abaixo desta tabela e, em seguida, tente novamente. | | **Erro 18456** - O início de sessão falhou. O login falhou para o utilizador '{user}' | Este erro ocorre se o serviço não conseguir ligar à base de dados de origem com as credenciais T-SQL fornecidas. Para resolver o problema, verifique as credenciais inscritas. Também pode consultar [MSSQLSERVER_18456](/sql/relational-databases/errors-events/mssqlserver-18456-database-engine-error) ou os documentos de resolução de problemas listados na nota abaixo desta tabela, e tentar novamente. | | **Erro 87** - A cadeia de ligação não é válida. Ocorreu um erro relacionado com a rede ou específico da instância ao estabelecer uma ligação ao SQL Server. O servidor não foi encontrado ou não está acessível. Verifique se o nome da instância está correto e que o SQL Server está configurado para permitir ligações remotas. (fornecedor: SQL Network Interfaces, erro: 25 - Cadeia de ligação não é válida) | Este erro ocorre se o serviço não conseguir ligar-se ao servidor de origem devido a uma cadeia de ligação inválida. Para resolver o problema, verifique a cadeia de ligação fornecida. Se a questão persistir, consulte os documentos de resolução de problemas listados na nota abaixo desta tabela e tente novamente. | | **Erro - Certificado de servidor não confiável.** Uma ligação foi estabelecida com sucesso com o servidor, mas então ocorreu um erro durante o processo de login. (prestador: Fornecedor SSL, erro: 0 - A cadeia de certificados foi emitida por uma autoridade que não é de confiança.) | Este erro ocorre se o certificado utilizado não for de confiança. Para resolver o problema, precisa de encontrar um certificado de confiança e, em seguida, adiá-lo no servidor. Em alternativa, pode selecionar a opção Certificado Fiduciário durante a ligação. Tome esta ação apenas se estiver familiarizado com o certificado usado e confiar nele. <br> As ligações TLS que são encriptadas usando um certificado auto-assinado não fornecem uma segurança forte. Não confie no TLS utilizando certificados auto-assinados num ambiente de produção ou em servidores ligados à internet. <br> Para obter mais informações, consulte a [utilização do SSL com um Microsoft SQL Server DB Instance](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/SQLServer.Concepts.General.SSL.Using.html) ou [Tutorial: Migrar o Servidor RDS SQL para Azure utilizando o DMS](./index.yml). | | **Erro 300** - O utilizador não tem permissões necessárias. VER SERVIDOR STATE permissão foi negada no objeto '{server}', base de dados '{database}' | Este erro ocorre se o utilizador não tiver permissão para realizar a migração. Para resolver o problema, consulte [permissões do servidor GRANT - Transact-SQL](/sql/t-sql/statements/grant-server-permissions-transact-sql) ou [Tutorial: Migrar o Servidor RDS SQL para Azure utilizando o DMS](./index.yml) para obter mais detalhes. | > [!NOTE] > Para obter mais informações sobre problemas relacionados com a ligação a um servidor AWS RDS SQL de origem, consulte os seguintes recursos: > > * [Resolver erros de Conectividade ao SQL Server](https://support.microsoft.com/help/4009936/solving-connectivity-errors-to-sql-server) > * [Como resolvo problemas ligados à minha página da base de dados da Amazon RDS?](https://aws.amazon.com/premiumsupport/knowledge-center/rds-cannot-connect) ## <a name="known-issues"></a>Problemas conhecidos * [Questões conhecidas/limitações de migração com migrações online para Azure SQL Database](./index.yml) * [Questões conhecidas/limitações de migração com migrações on-line para Azure Database for MySQL](./known-issues-azure-mysql-online.md) * [Questões conhecidas/limitações de migração com migrações on-line para Azure Database for PostgreSQL](./known-issues-azure-postgresql-online.md) ## <a name="next-steps"></a>Passos seguintes * Ver o artigo [Serviço de Migração de Bases de Dados Azure PowerShell](/powershell/module/azurerm.datamigration/?view=azurermps-6.13.0&preserve-view=true#data_migration). * Ver o artigo [Como configurar os parâmetros do servidor na Base de Dados Azure para o MySQL utilizando o portal Azure](../mysql/howto-server-parameters.md). * Ver o artigo [Visão geral dos pré-requisitos para a utilização do Serviço de Migração da Base de Dados Azure](./pre-reqs.md). * Consulte as FAQ sobre a [utilização do Serviço de Migração da Base de Dados Azure.](./faq.md)
145.959184
1,148
0.777894
por_Latn
0.999247
d9ec866b0faaa72484a4df351bcc3d0bd531b6af
10,458
md
Markdown
articles/site-recovery/hyper-v-deployment-planner-cost-estimation.md
tokawa-ms/azure-docs.ja-jp
c1db876db6cde4ac449e959e3bfe39f941660f8a
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/site-recovery/hyper-v-deployment-planner-cost-estimation.md
tokawa-ms/azure-docs.ja-jp
c1db876db6cde4ac449e959e3bfe39f941660f8a
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/site-recovery/hyper-v-deployment-planner-cost-estimation.md
tokawa-ms/azure-docs.ja-jp
c1db876db6cde4ac449e959e3bfe39f941660f8a
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Hyper-V VM の Azure へのディザスター リカバリーのために Azure Site Recovery Deployment Planner のコスト見積もりレポートを確認する |Microsoft Docs description: この記事では、Hyper-V の Azure へのディザスター リカバリーのために、Azure Site Recovery Deployment Planner によって生成されるコスト見積もりレポートを確認する方法を説明します。 services: site-recovery author: mayurigupta13 manager: rochakm ms.service: site-recovery ms.topic: conceptual ms.date: 4/9/2019 ms.author: mayg ms.openlocfilehash: 29457f2f5021fed9d8785f5764c4119de4be1fa9 ms.sourcegitcommit: a43a59e44c14d349d597c3d2fd2bc779989c71d7 ms.translationtype: HT ms.contentlocale: ja-JP ms.lasthandoff: 11/25/2020 ms.locfileid: "95999214" --- # <a name="cost-estimation-report-by-azure-site-recovery-deployment-planner"></a>Azure Site Recovery Deployment Planner のコスト見積もりレポート Azure Site Recovery Deployment Planner のレポートでは、コスト見積もりの概要が [[Recommendations]\(推奨事項\)](hyper-v-deployment-planner-analyze-report.md#recommendations) シートに、詳しいコスト分析が [Cost Estimation]\(コスト見積もり\) シートに表示されます。 コスト分析は、VM ごとに詳しく表示されます。 ### <a name="cost-estimation-summary"></a>コスト見積もりの概要 このグラフは、選択したターゲット リージョンの Azure に対するディザスター リカバリー (DR) の総コスト見積もりの概要と、レポート生成に関して指定された通貨を示しています。 ![コスト見積もりの概要](media/hyper-v-azure-deployment-planner-cost-estimation/cost-estimation-summary-h2a.png) Azure Site Recovery を使用して適合 VM を保護する場合に、ストレージ、コンピューティング、ネットワーク、ライセンスに関して支払う必要のあるコストを把握できます。 コスト計算で加味されるのは適合 VM です。プロファイリングの対象となったすべての VM が対象になるわけではありません。 コストは月単位または年単位で表示することができます。 詳細については、「[サポートされるターゲット リージョン](./hyper-v-deployment-planner-cost-estimation.md#supported-target-regions)」と「[サポートされる通貨](./hyper-v-deployment-planner-cost-estimation.md#supported-currencies)」を参照してください。 **[Cost by components]\(コンポーネントごとのコスト\)** :DR コストの合計が、コンピューティング、ストレージ、ネットワーク、Site Recovery ライセンス コストの 4 つのコンポーネントに分けて表示されます。 コストは、レプリケーション中および DR ドリル時に発生する消費量に基づいて計算されます。 計算には、コンピューティングとストレージ (Premium と Standard) のほか、オンプレミス サイトと Azure との間に構成されている ExpressRoute/VPN、Site Recovery ライセンスが考慮されます。 **[Cost by states]\(状態ごとのコスト\)** :ディザスター リカバリー (DR) の合計コストが、レプリケーションと DR ドリルという 2 種類の状態に基づいて分類されます。 **[Replication cost]\(レプリケーション コスト\)** :レプリケーション時に発生するコストです。 ストレージ、ネットワーク、Site Recovery ライセンスのコストが含まれます。 **[DR-Drill cost]\(DR ドリル コスト\)** :テスト フェールオーバー時に発生するコストです。 テスト フェールオーバー中は、Site Recovery によって VM がスピンアップされます。 DR ドリル コストには、実行中の VM のコンピューティング コストとストレージ コストが含まれます。 **[Azure storage cost per Month/Year]\(月/年単位の Azure Storage コスト\)** :Premium ストレージと Standard ストレージに関して、レプリケーションと DR ドリルで生じる合計ストレージ コストが表示されます。 ## <a name="detailed-cost-analysis"></a>Detailed cost analysis (詳細コスト分析) Azure のコンピューティング、ストレージ、ネットワークの料金は Azure リージョンによって異なります。 サブスクリプションやそれに関連付けられているオファーに基づき、ターゲット Azure リージョンと通貨を指定して、最新の Azure 料金に関するコスト見積もりレポートを生成することができます。 既定では、Azure リージョンに "米国西部 2" が、通貨には米ドル (USD) が使用されます。 その他のリージョンや通貨を使用した場合、次回サブスクリプション ID、オファー ID、ターゲット リージョン、通貨を指定せずにレポートを生成すると、前回使用したターゲット リージョンと通貨に基づく料金がコスト見積もりに使用されます。 このセクションには、レポート生成に使用されたサブスクリプション ID とオファー ID が表示されます。 使用しなかった場合は、何も表示されません。 レポート全体のうち、灰色でマークされたセルは読み取り専用です。 白色のセルは、必要に応じて変更できます。 ![コスト見積もりの詳細](media/hyper-v-azure-deployment-planner-cost-estimation/cost-estimation1-h2a.png) ### <a name="overall-dr-costs-by-components"></a>Overall DR costs by components (コンポーネントごとの総 DR コスト) 最初のセクションには、コンポーネントごとの総 DR コストと状態ごとの DR コストが表示されます。 **コンピューティング**:DR のニーズに応じて Azure で実行される IaaS VM のコストです。 DR ドリル (テスト フェールオーバー) 時に Site Recovery によって作成される VM のほか、 Azure 上で実行される VM が対象となります (SQL Server Always On 可用性グループやドメイン コントローラー/ドメイン ネーム サーバーなど)。 **ストレージ**: DR のニーズに応じて消費される Azure Storage のコストです。 レプリケーションや DR ドリル時に使用されるストレージの消費が対象となります。 **ネットワーク**:必要な DR に関する ExpressRoute とサイト間 VPN のコスト。 **Azure Site Recovery ライセンス**:すべての適合 VM に関する Site Recovery のライセンス コスト。 Detailed cost analysis (詳細コスト分析) テーブルに VM を手動で入力した場合、その VM に関して生じる Site Recovery のライセンス コストも対象となります。 ### <a name="overall-dr-costs-by-states"></a>Overall DR costs by states (状態ごとの総 DR コスト) DR コストの合計は、レプリケーションと DR ドリルという 2 種類の状態に基づいて分類されます。 **[Replication]\(レプリケーション\)** :レプリケーション時に発生するコスト。 ストレージ、ネットワーク、Site Recovery ライセンスのコストが含まれます。 **[DR-Drill]\(DR ドリル\)** :DR ドリル時に発生するコスト。 DR ドリル中は、Site Recovery によって VM がスピンアップされます。 DR ドリル コストには、実行中の VM のコンピューティング コストとストレージ コストが含まれます。 * 1 年間の合計 DR ドリル期間 = DR ドリル数 x 各 DR ドリル期間 (日) * 平均 DR ドリル コスト (月ごと) = 合計 DR ドリル コスト / 12 ### <a name="storage-cost-table"></a>ストレージ コスト テーブル このテーブルには、レプリケーションと DR ドリルに関して発生する Premium ストレージと Standard ストレージのコストが、割引を適用した場合と適用しない場合とに分けて表示されます。 ### <a name="site-to-azure-network"></a>Site to Azure network (サイトと Azure 間のネットワーク) 実際の要件に応じた適切な設定を選択してください。 **ExpressRoute**:差分レプリケーションに必要なネットワーク帯域幅に合った、最寄りの ExpressRoute プランが既定で選択されます。 プランは、実際の要件に応じて変更することができます。 **[VPN Gateway type]\(VPN Gateway の種類\)** :実際の環境に存在する場合は Azure VPN Gateway を選択します。 既定では NA になります。 **[Target region]\(ターゲット リージョン\)** :DR の対象として指定した Azure リージョン。 コンピューティング、ストレージ、ネットワーク、ライセンスに関してレポートに使用される料金は、そのリージョンの Azure 料金に基づいて決まります。 ### <a name="vm-running-on-azure"></a>VM running on Azure (Azure 上で実行されている VM) ドメイン コントローラー VM、DNS VM、または Always On 可用性グループを使用した SQL Server VM が DR の対象として Azure 上で実行されていることも考えられます。 そのような場合は、VM の数やサイズを指定して、そのコンピューティング コストを合計 DR コストに反映することができます。 ### <a name="apply-overall-discount-if-applicable"></a>Apply overall discount if applicable (該当する場合に全体的な割引を適用) Azure の料金総額に対して何らかの割引を受ける資格のある Azure パートナーまたはお客様は、このフィールドを使用できます。 割引 (%) はすべてのコンポーネントに適用されます。 ### <a name="number-of-virtual-machines-type-and-compute-cost-per-year"></a>Number of virtual machines type and compute cost (per year) (各種仮想マシンの数とコンピューティング コスト (年間)) このテーブルには、Windows VM の数と非 Windows VM の数、さらに、それぞれの DR ドリルのコンピューティング コストが表示されます。 ### <a name="settings"></a>設定 **[Using Managed disk]\(マネージド ディスクの使用\)** :DR ドリル時にマネージド ディスクが使用されているかどうかを指定する設定です。 既定値は **[はい]** です。 **-UseManagedDisks** を **[No]\(いいえ\)** に設定した場合、非管理対象ディスクの料金がコスト計算に使用されます。 **Currency**:レポートの生成に使用される通貨。 **[Cost duration]\(コスト期間\)** :すべてのコストは、月または年単位で表示できます。 ## <a name="detailed-cost-analysis-table"></a>[Detailed cost analysis]\(詳細コスト分析\) テーブル ![Detailed cost analysis (詳細コスト分析)](media/hyper-v-azure-deployment-planner-cost-estimation/detailed-cost-analysis-h2a.png) このテーブルには、適合 VM ごとのコスト明細が一覧表示されます。 プロファイリングの対象外となった VM の Azure DR コストは、このテーブルに手動で VM を追加することで見積もることができます。 この情報は、新しい DR デプロイに必要な Azure のコストを、詳細なプロファイリングを実行せずに見積もる必要がある場合に役立ちます。 VM を手動で追加するには、次の手順に従います。 1. **[Insert row]\(行の挿入\)** を選択して **開始** 行と **終了** 行の間に新しい行を挿入します。 1. 適切な VM サイズとその構成に合った VM 数に基づいて、次の各列の情報を入力します。 a. **[Number of VMs]\(VM の数\)** b. **[IaaS size (Your selection)]\(IaaS サイズ (ユーザーが選択)\)** c. **[Storage type (Standard/Premium)]\(ストレージの種類 (Standard/Premium)\)** d. **[VM total storage size (GB)]\(VM 合計ストレージ サイズ (GB)\)** e. **[Number of DR Drills in a year]\(年間 DR ドリル数\)** f. **[Each DR drill duration (Days)]\(各 DR ドリル期間 (日数)\)** g. **[OS Type]\(OS の種類\)** h. **[Data redundancy]\(データの冗長性\)** i. **Azure Hybrid 利用特典** 1. **[Number of DR-Drills in a year]\(年間 DR ドリル数\)** 、 **[Each DR-Drill duration (Days)]\(各 DR ドリル期間 (日数)\)** 、 **[Data redundancy]\(データの冗長性\)** 、 **[Azure Hybrid Use Benefit]\(Azure ハイブリッド使用特典\)** に関しては、 **[Apply to all]\(すべてに適用\)** を選択すると、テーブル内のすべての VM に同じ値を適用することができます。 1. **[Re-calculate cost]\(コストを再計算\)** を選択してコストを更新します。 **[VM Name]\(VM 名\)** :VM の名前。 **[Number of VMs]\(VM の数\)** :該当する構成と一致する VM の数。 同様の構成の VM が、プロファイリングされてはいないものの保護されている場合は、既存の VM の数を更新できます。 **[IaaS size (Recommendation)]\(IaaS サイズ (推奨)\)** :ツールによって推奨された、適合 VM の VM ロール サイズです。 **[IaaS size (Your selection)]\(IaaS サイズ (ユーザーが選択)\)** :既定では、推奨 VM ロール サイズと同じサイズが使用されます。 実際の要件に応じてロールは変更することができます。 コンピューティング コストは、選択された VM ロール サイズに基づきます。 **[Storage type]\(ストレージの種類\)** :VM によって使用されるストレージの種類。 Standard と Premium のどちらかのストレージになります。 **[VM total storage size (GB)]\(VM 合計ストレージ サイズ (GB)\)** :VM の合計ストレージ。 **[Number of DR-Drills in a year]\(年間 DR ドリル数\)** :1 年間に実行する DR ドリルの回数。 既定では、年間 4 回です。 特定の VM の期間を変更できるほか、すべての VM に新しい値を適用することができます。 一番上の行に新しい値を入力し、 **[Apply to all]\(すべてに適用\)** を選択してください。 年間 DR ドリル数と各 DR ドリル期間に基づいて、合計 DR ドリル コストが計算されます。 **[Each DR-Drill duration (Days)]\(各 DR ドリル期間 (日数)\)** :各 DR ドリルの期間。 [ディザスター リカバリーのソフトウェア アシュアランス特典](https://azure.microsoft.com/pricing/details/site-recovery)により、90 日ごとに 7 日が既定値となります。 特定の VM の期間を変更できるほか、すべての VM に新しい値を適用することができます。 一番上の行に新しい値を入力し、 **[Apply to all]\(すべてに適用\)** を選択してください。 年間 DR ドリル数と各 DR ドリル期間に基づいて、合計 DR ドリル コストが計算されます。 **[OS Type]\(OS の種類\)** :VM のオペレーティングシステム (OS) の種類。 Windows または Linux を指定できます。 OS の種類が Windows の場合は、その VM に Azure ハイブリッド使用特典を適用できます。 **[Data redundancy]\(データの冗長性\)** :ローカル冗長ストレージ、geo 冗長ストレージ、読み取りアクセス geo 冗長ストレージのいずれかを指定できます。 既定値はローカル冗長ストレージです。 特定の VM のストレージ アカウントに基づいて種類を変更できるほか、変更後の種類をすべての VM に適用することができます。 一番上の行で種類を変更し、 **[Apply to all]\(すべてに適用\)** を選択してください。 レプリケーションに使用されるストレージのコストは、選択したデータ冗長性の料金に基づいて計算されます。 **[Azure Hybrid Use Benefit]\(Azure ハイブリッド使用特典\)** :Windows VM には Azure ハイブリッド使用特典を適用できます (該当する場合)。 既定値は **[はい]** です。 特定の VM の設定を変更できるほか、すべての VM の設定を更新することができます。 **[Apply to all]\(すべてに適用\)** を選択してください。 **[Total Azure consumption]\(Azure 消費合計\)** :対象 DR のコンピューティング、ストレージ、Site Recovery のライセンス コスト。 選択内容に応じて、月単位または年単位でコストが表示されます。 **[Steady state replication cost]\(定常状態のレプリケーション コスト\)** :レプリケーションのストレージ コスト。 **[Total DR-Drill cost (average)]\(合計 DR ドリル コスト (平均)\)** :DR ドリルのコンピューティング コストとストレージ コスト。 **Azure Site Recovery のライセンス コスト**:Site Recovery のライセンス コスト。 ## <a name="supported-target-regions"></a>サポートされるターゲット リージョン Site Recovery Deployment Planner では、以下の Azure リージョンに関してコスト見積もりを実行できます。 該当するリージョンがここに記載されていない場合は、料金が最も近いリージョンをどれか選んで使用してください。 eastus、eastus2、westus、centralus、northcentralus、southcentralus、northeurope、westeurope、eastasia、southeastasia、japaneast、japanwest、australiaeast、australiasoutheast、brazilsouth、southindia、centralindia、westindia、canadacentral、canadaeast、westus2、westcentralus、uksouth、ukwest、koreacentral、koreasouth ## <a name="supported-currencies"></a>サポートされる通貨 Site Recovery Deployment Planner は、次のいずれかの通貨でコスト レポートを生成できます。 |Currency|名前|Currency|名前|Currency|名前| |---|---|---|---|---|---|---|---| |ARS|アルゼンチン ペソ ($)|AUD|オーストラリア ドル ($)|BRL|ブラジル レアル (R$)| |CAD|カナダ ドル ($)|CHF|スイス フラン (chf)|DKK|デンマーク クローネ (kr)| |EUR|ユーロ (€)|GBP|イギリス ポンド (£)|HKD|香港ドル (HK$)| |IDR|インドネシア ルピア (Rp)|INR|インド ルピー (₹)|JPY|日本円 (¥)| |KRW|韓国ウォン (₩)|MXN|メキシコ ペソ (MX$)|MYR|マレーシア リンギ (RM$)| |NOK|ノルウェー クローネ (kr)||NZD|ニュージーランド ドル ($)||RUB|ロシア ルーブル (руб)| |SAR|サウジ リアル (SR)|SEK|スウェーデン クローナ (kr)|TWD|台湾ドル (NT$)| |TRY|トルコ リラ (TL)|USD| 米ドル ($)|ZAR|南アフリカ ランド (R)| ## <a name="next-steps"></a>次のステップ [Site Recovery を使用して Hyper-V から Azure に VM](hyper-v-azure-tutorial.md) をレプリケートして保護する方法について詳しく調べてみましょう。
57.147541
335
0.759514
yue_Hant
0.559018
d9eca1a51acabb6c6b9f6155b433a53cc3e118ad
454
md
Markdown
docs/v1/lesion-tracker/user-manual.md
huamanlou/Viewers
2f2bbca8787caa6a6116bf6e4ac180d6ed2bb91b
[ "MIT" ]
null
null
null
docs/v1/lesion-tracker/user-manual.md
huamanlou/Viewers
2f2bbca8787caa6a6116bf6e4ac180d6ed2bb91b
[ "MIT" ]
null
null
null
docs/v1/lesion-tracker/user-manual.md
huamanlou/Viewers
2f2bbca8787caa6a6116bf6e4ac180d6ed2bb91b
[ "MIT" ]
null
null
null
# Lesion Tracker - User Manual 1. [Installation on Windows](../installation-on-windows.md) 2. [Manage Studies in Orthanc](../manage-studies-in-orthanc.md) 3. [User Accounts](../user-accounts.md) 4. [Study and Timepoint Management](../study-and-timepoint-management.md) 5. [Lesion Tracking](../lesion-tracking.md) 6. [User Preferences](../user-preferences.md) 7. [Server Management](../server-management.md) 8. [Audit Trail](../audit-trail.md)
41.272727
74
0.707048
kor_Hang
0.153794
d9ecdb1fb06ee76d6efdec1ee76b687533c8b907
22,780
md
Markdown
windows/security/threat-protection/windows-platform-common-criteria.md
aisgbnok/windows-itpro-docs
73f2459fc1b0d0bb67f717367a0a2bba576dce13
[ "CC-BY-4.0", "MIT" ]
null
null
null
windows/security/threat-protection/windows-platform-common-criteria.md
aisgbnok/windows-itpro-docs
73f2459fc1b0d0bb67f717367a0a2bba576dce13
[ "CC-BY-4.0", "MIT" ]
null
null
null
windows/security/threat-protection/windows-platform-common-criteria.md
aisgbnok/windows-itpro-docs
73f2459fc1b0d0bb67f717367a0a2bba576dce13
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Common Criteria Certifications description: This topic details how Microsoft supports the Common Criteria certification program. ms.prod: m365-security author: dansimp ms.author: dansimp manager: dansimp ms.collection: M365-identity-device-management ms.topic: article ms.localizationpriority: medium ms.date: 1/14/2022 ms.reviewer: ms.technology: windows-sec --- # Common Criteria Certifications Microsoft is committed to optimizing the security of its products and services. As part of that commitment, Microsoft supports the Common Criteria certification program, ensures that products incorporate the features and functions required by relevant Common Criteria Protection Profiles, and completes Common Criteria certifications of Microsoft Windows products. This topic lists the current and archived certified Windows products, together with relevant documentation from each certification. ## Certified Products The product releases below are currently certified against the cited Protection Profile, as listed on the [Common Criteria Portal](https://www.commoncriteriaportal.org/products/). The Security Target describes the product edition(s) in scope, the security functionality in the product, and the assurance measures from the Protection Profile used as part of the evaluation. The Administrative Guide provides guidance on configuring the product to match the evaluated configuration. The Certification Report or Validation Report documents the results of the evaluation by the validation team, with the Assurance Activity Report providing details on the evaluator's actions. ### Microsoft Windows 10, Windows Server version 2004 (May 2020 Update); Microsoft Windows Server Core Datacenter (Azure Frabic Controller); Microsoft Windows Server Core Datacenter (Azure Stack) Certified against the Protection Profile for General Purpose Operating Systems, including the Extended Package for Wireless Local Area Network Clients and the Module for Virtual Private Network Clients. - [Security Target](https://download.microsoft.com/download/a/5/6/a5650848-e86a-4554-bb13-1ad6ff2d45d2/Windows%2010%202004%20GP%20OS%20Security%20Target.pdf) - [Administrative Guide](https://download.microsoft.com/download/4/a/6/4a66a459-3c73-4c34-84bb-92cb20301206/Windows%2010%202004%20GP%20OS%20Administrative%20Guide.pdf) - [Validation Report](https://download.microsoft.com/download/1/c/b/1cb65e32-f87d-41dd-bc29-88dc943fad9d/Windows%2010%202004%20GP%20OS%20Validation%20Reports.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/3/2/4/324562b6-0917-4708-8f9d-8d2d12859839/Windows%2010%202004%20GP%20OS%20Assurance%20Activity%20Report-Public%20.pdf) ### Microsoft Windows Server, Windows 10 version 1909 (November 2019 Update), Microsoft Windows Server 2019 (version 1809) Hyper-V Certified against the Protection Profile for Virtualization, including the Extended Package for Server Virtualization. - [Security Target](https://download.microsoft.com/download/5/f/6/5f6efbb4-88a0-4161-953d-de07450b7107/Windows%20+%20Windows%20Server%201909,%20Windows%20Server%202019%20Hyper-V%20Security%20Target.pdf) - [Administrative Guide](https://download.microsoft.com/download/7/5/0/750db292-f3d3-48c9-9557-aa64237a0e22/Virtualization%201909%20Administrative%20Guide.pdf) - [Validation Report](https://download.microsoft.com/download/4/7/6/476ca991-631d-4943-aa89-b0cd4f448d14/Windows%20+%20Windows%20Server%201909,%20Windows%20Server%202019%20Hyper-V%20Validation%20Report.pdf) - [Assurance Activities Report](https://download.microsoft.com/download/3/b/4/3b4818d8-62a1-4b8d-8cb4-9b3256564355/Windows%20+%20Windows%20Server%201909,%20Windows%20Server%202019%20Hyper-V%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 and Windows Server (November 2019 Update, version 1909) Certified against the Protection Profile for General Purpose Operating Systems, including the Extended Package for Wireless Local Area Network Clients and the Module for Virtual Private Network Clients. - [Security Target](https://download.microsoft.com/download/b/3/7/b37981cf-040a-4b02-a93c-a3d3a93986bf/Windows%2010%201909%20GP%20OS%20Security%20Target.pdf) - [Administrative Guide](https://download.microsoft.com/download/7/7/3/77303254-05fb-4009-8a39-bf5fe7484a41/Windows%2010%201909%20GP%20OS%20Administrative%20Guide.pdf) - [Certification Report](https://download.microsoft.com/download/9/f/3/9f350b73-1790-4dcb-97f7-a0e65a00b55f/Windows%2010%201909%20GP%20OS%20Certification%20Report.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/0/0/d/00d26b48-a051-4e9a-8036-850d825f8ef9/Windows%2010%201909%20GP%20OS%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 and Windows Server (May 2019 Update, version 1903) Certified against the Protection Profile for General Purpose Operating Systems, including the Extended Package for Wireless Local Area Network Clients. - [Security Target](https://download.microsoft.com/download/c/6/9/c6903621-901e-4603-b9cb-fbfe5d6aa691/Windows%2010%201903%20GP%20OS%20Security%20Target.pdf) - [Administrative Guide](https://download.microsoft.com/download/0/b/b/0bb1c6b7-499a-458e-a5f8-e9cf972dfa8d/Windows%2010%201903%20GP%20OS%20Administrative%20Guide.pdf) - [Certification Report](https://download.microsoft.com/download/2/1/9/219909ad-2f2a-44cc-8fcb-126f28c74d36/Windows%2010%201903%20GP%20OS%20Certification%20Report.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/2/a/1/2a103b68-cd12-4476-8945-873746b5f432/Windows%2010%201903%20GP%20OS%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 and Windows Server (October 2018 Update, version 1809) Certified against the Protection Profile for General Purpose Operating Systems, including the Extended Package for Wireless Local Area Network Clients. - [Security Target](https://download.microsoft.com/download/3/f/e/3fe6938d-2c2d-4ef1-85d5-1d42dc68ea89/Windows%2010%20version%201809%20GP%20OS%20Security%20Target.pdf) - [Administrative Guide](https://download.microsoft.com/download/f/f/1/ff186e32-35cf-47db-98b0-91ff11763d74/Windows%2010%20version%201809%20GP%20OS%20Administrative%20Guide.pdf) - [Certification Report](https://download.microsoft.com/download/9/4/0/940ac551-7757-486d-9da1-7aa0300ebac0/Windows%2010%20version%201809%20GP%20OS%20Certification%20Report%20-%202018-61-INF-2795.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/a/6/6/a66bfcf1-f6ef-4991-ab06-5b1c01f91983/Windows%2010%201809%20GP%20OS%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 and Windows Server (April 2018 Update, version 1803) Certified against the Protection Profile for General Purpose Operating Systems, including the Extended Package for Wireless Local Area Network Clients. - [Security Target](https://download.microsoft.com/download/0/7/6/0764E933-DD0B-45A7-9144-1DD9F454DCEF/Windows%2010%201803%20GP%20OS%20Security%20Target.pdf) - [Administrative Guide](https://download.microsoft.com/download/6/C/1/6C13FBFF-9CB0-455F-A1C8-3E3CB0ACBD7B/Windows%2010%201803%20GP%20OS%20Administrative%20Guide.pdf) - [Certification Report](https://download.microsoft.com/download/6/7/1/67167BF2-885D-4646-A61E-96A0024B52BB/Windows%2010%201803%20GP%20OS%20Certification%20Report.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/b/3/d/b3da41b6-6ebc-4a26-a581-2d2ad8d8d1ac/Windows%2010%201803%20GP%20OS%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 and Windows Server (Fall Creators Update, version 1709) Certified against the Protection Profile for General Purpose Operating Systems. - [Security Target](https://download.microsoft.com/download/B/6/A/B6A5EC2C-6351-4FB9-8FF1-643D4BD5BE6E/Windows%2010%201709%20GP%20OS%20Security%20Target.pdf) - [Administrative Guide](https://download.microsoft.com/download/5/D/2/5D26F473-0FCE-4AC4-9065-6AEC0FE5B693/Windows%2010%201709%20GP%20OS%20Administrative%20Guide.pdf) - [Certification Report](https://download.microsoft.com/download/2/C/2/2C20D013-0610-4047-B2FA-516819DFAE0A/Windows%2010%201709%20GP%20OS%20Certification%20Report.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/e/7/6/e7644e3c-1e59-4754-b071-aec491c71849/Windows%2010%201709%20GP%20OS%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 (Creators Update, version 1703) Certified against the Protection Profile for General Purpose Operating Systems. - [Security Target](https://download.microsoft.com/download/e/8/b/e8b8c42a-a0b6-4ba1-9bdc-e704e8289697/windows%2010%20version%201703%20gp%20os%20security%20target%20-%20public%20\(january%2016,%202018\)\(final\)\(clean\).pdf) - [Administrative Guide](https://download.microsoft.com/download/e/9/7/e97f0c7f-e741-4657-8f79-2c0a7ca928e3/windows%2010%20cu%20gp%20os%20operational%20guidance%20\(jan%208%202017%20-%20public\).pdf) - [Certification Report](https://download.microsoft.com/download/3/2/c/32cdf627-dd23-4266-90ff-2f9685fd15c0/2017-49%20inf-2218%20cr.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/a/e/9/ae9a2235-e1cd-4869-964d-c8260f604367/Windows%2010%201703%20GP%20OS%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 (Anniversary Update, version 1607) and Windows Server 2016 Certified against the Protection Profile for General Purpose Operating Systems. - [Security Target](https://download.microsoft.com/download/f/8/c/f8c1c2a4-719c-48ae-942f-9fd3ce5b238f/windows%2010%20au%20and%20server%202016%20gp%20os%20security%20target%20-%20public%20\(december%202%202016\)%20\(clean\).docx) - [Administrative Guide](https://download.microsoft.com/download/b/5/2/b52e9081-05c6-4895-91a3-732bfa0eb4da/windows%2010%20au%20and%20server%202016%20gp%20os%20operational%20guidance%20\(final\).docx) - [Validation Report](https://download.microsoft.com/download/5/4/8/548cc06e-c671-4502-bebf-20d38e49b731/2016-36-inf-1779.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/a/5/f/a5f08a43-75f9-4433-bd77-aeb14276e587/Windows%2010%201607%20GP%20OS%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 (version 1507) and Windows Server 2012 R2 Certified against the Protection Profile for General Purpose Operating Systems. - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_windows10.pdf) - [Administrative Guide](https://download.microsoft.com/download/0/f/d/0fd33c9a-98ac-499e-882f-274f80f3d4f0/microsoft%20windows%2010%20and%20server%202012%20r2%20gp%20os%20guidance.pdf) - [Certification Report](https://www.commoncriteriaportal.org/files/epfiles/cr_windows10.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/7/e/5/7e5575c9-10f9-4f3d-9871-bd7cf7422e3b/Windows%2010%20(1507),%20Windows%20Server%202012%20R2%20GPOS%20Assurance%20Activity%20Report.pdf) ## Archived Certified Products The product releases below were certified against the cited Protection Profile and are now archived, as listed on the [Common Criteria Portal](https://www.commoncriteriaportal.org/products/index.cfm?archived=1). The Security Target describes the product edition(s) in scope, the security functionality in the product, and the assurance measures from the Protection Profile used as part of the evaluation. The Administrative Guide provides guidance on configuring the product to match the evaluated configuration. The Validation Report documents the results of the evaluation by the validation team, with the Assurance Activity Report, where available, providing details on the evaluator's actions. ### Microsoft Windows Server 2016, Windows Server 2012 R2, and Windows 10 Certified against the Protection Profile for Server Virtualization. - [Security Target](https://download.microsoft.com/download/1/c/3/1c3b5ab0-e064-4350-a31f-48312180d9b5/st_vid10823-st.pdf) - [Administrative Guide](https://download.microsoft.com/download/d/c/4/dc40b5c8-49c2-4587-8a04-ab3b81eb6fc4/st_vid10823-agd.pdf) - [Validation Report](https://download.microsoft.com/download/a/3/3/a336f881-4ac9-4c79-8202-95289f86bb7a/st_vid10823-vr.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/3/f/c/3fcc76e1-d471-4b44-9a19-29e69b6ab899/Windows%2010%20Hyper-V,%20Server%202016,%20Server%202012%20R2%20Virtualization%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 and Windows 10 Mobile (Anniversary Update, version 1607) Certified against the Protection Profile for Mobile Device Fundamentals. - [Security Target](https://download.microsoft.com/download/1/5/e/15eee6d3-f2a8-4441-8cb1-ce8c2ab91c24/windows%2010%20anniversary%20update%20mdf%20security%20target%20-%20public%20\(april%203%202017\).docx) - [Administrative Guide](https://download.microsoft.com/download/4/c/1/4c1f4ea4-2d66-4232-a0f5-925b2bc763bc/windows%2010%20au%20operational%20guidance%20\(16%20mar%202017\)\(clean\).docx) - [Validation Report](https://download.microsoft.com/download/f/2/f/f2f7176e-34f4-4ab0-993c-6606d207bb3c/st_vid10752-vr.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/9/3/9/939b44a8-5755-4d4c-b020-d5e8b89690ab/Windows%2010%20and%20Windows%2010%20Mobile%201607%20MDF%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 (Anniversary Update, version 1607) and Windows Server 2016 Certified against the Protection Profile for IPsec Virtual Private Network (VPN) Clients. - [Security Target](https://download.microsoft.com/download/b/f/5/bf59e430-e57b-462d-8dca-8ac3c93cfcff/windows%2010%20anniversary%20update%20ipsec%20vpn%20client%20security%20target%20-%20public%20\(december%2029%202016\)%20\(clean\).docx) - [Administrative Guide](https://download.microsoft.com/download/2/c/c/2cc8f929-233e-4a40-b673-57b449680984/windows%2010%20au%20and%20server%202016%20ipsec%20vpn%20client%20operational%20guidance%20\(21%20dec%202016\)%20\(public\).docx) - [Validation Report](https://download.microsoft.com/download/2/0/a/20a8e686-3cd9-43c4-a22a-54b552a9788a/st_vid10753-vr.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/b/8/d/b8ddc36a-408a-4d64-a31c-d41c9c1e9d9e/Windows%2010%201607,%20Windows%20Server%202016%20IPsec%20VPN%20Client%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 (November 2015 Update, version 1511) Certified against the Protection Profile for Mobile Device Fundamentals. - [Security Target](https://download.microsoft.com/download/a/c/2/ac2a6ed8-4d2f-4f48-a9bf-f059d6c9af38/windows%2010%20mdf3%20security%20target%20-%20public%20\(june%2022%202016\)\(final\).docx) - [Administrative Guide](https://download.microsoft.com/download/3/2/c/32c6fa02-b194-478f-a0f6-0215b47d0f40/windows%2010%20mdf3%20mobile%20device%20pp%20operational%20guidance%20\(may%2027,%202016\)\(public\).docx) - [Validation Report](https://download.microsoft.com/download/d/c/b/dcb7097d-1b9f-4786-bb07-3c169fefb579/st_vid10715-vr.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/1/f/1/1f12ed80-6d73-4a16-806f-d5116814bd7c/Windows%2010%20November%202015%20Update%20(1511)%20MDF%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 and Windows 10 Mobile (version 1507) Certified against the Protection Profile for Mobile Device Fundamentals. - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid10677-st.pdf) - [Administrative Guide](https://download.microsoft.com/download/2/d/c/2dce3435-9328-48e2-9813-c2559a8d39fa/microsoft%20windows%2010%20and%20windows%2010%20mobile%20guidance.pdf) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid10694-vr.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/a/1/3/a1365491-0a53-42cd-bd73-ca4067c43d86/Windows%2010,%20Windows%2010%20Mobile%20(1507)%20MDF%20Assurance%20Activity%20Report.pdf) ### Microsoft Windows 10 (version 1507) Certified against the Protection Profile for IPsec Virtual Private Network (VPN) Clients. - [Security Target](https://download.microsoft.com/download/3/7/2/372beb03-b1ed-4bb6-9b9b-b8f43afc570d/st_vid10746-st.pdf) - [Administrative Guide](https://download.microsoft.com/download/3/3/f/33fa01dd-b380-46e1-833f-fd85854b4022/st_vid10746-agd.pdf) - [Validation Report](https://download.microsoft.com/download/9/b/6/9b633763-6078-48aa-b9ba-960da2172a11/st_vid10746-vr.pdf) - [Assurance Activity Report](https://download.microsoft.com/download/9/3/6/93630ffb-5c06-4fea-af36-164da3e359c9/Windows%2010%20IPsec%20VPN%20Client%20Assurance%20Activity%20Report.pdf) ### Windows 8.1 with Surface 3 and Windows Phone 8.1 with Lumia 635 and Lumia 830 Certified against the Protection Profile for Mobile Device Fundamentals. - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid10635-st.pdf) - [Administrative Guide](https://download.microsoft.com/download/b/e/3/be365594-daa5-4af3-a6b5-9533d61eae32/surface%20pro%203%20mobile%20operational%20guidance.docx) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid10635-vr.pdf) ### Microsoft Surface Pro 3 and Windows 8.1 Certified against the Protection Profile for Mobile Device Fundamentals. - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid10632-st.pdf) - [Administrative Guide](https://download.microsoft.com/download/b/e/3/be365594-daa5-4af3-a6b5-9533d61eae32/surface%20pro%203%20mobile%20operational%20guidance.docx) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid10632-vr.pdf) ### Windows 8.1 and Windows Phone 8.1 Certified against the Protection Profile for Mobile Device Fundamentals. - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid10592-st.pdf) - [Administrative Guide](https://download.microsoft.com/download/b/0/e/b0e30225-5017-4241-ac0a-6c40bc8e6714/mobile%20operational%20guidance.docx) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid10592-vr.pdf) ### Windows 8 and Windows Server 2012 Certified against the Protection Profile for General Purpose Operating Systems. - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid10520-st.pdf) - [Administrative Guide](https://download.microsoft.com/download/6/0/b/60b27ded-705a-4751-8e9f-642e635c3cf3/microsoft%20windows%208%20windows%20server%202012%20common%20criteria%20supplemental%20admin%20guidance.docx) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid10520-vr.pdf) ### Windows 8 and Windows RT Certified against the Protection Profile for General Purpose Operating Systems. - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid10620-st.pdf) - [Administrative Guide](https://download.microsoft.com/download/8/6/e/86e8c001-8556-4949-90cf-f5beac918026/microsoft%20windows%208%20microsoft%20windows%20rt%20common%20criteria%20supplemental%20admin.docx) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid10620-vr.pdf) ### Windows 8 and Windows Server 2012 BitLocker Certified against the Protection Profile for Full Disk Encryption. - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid10540-st.pdf) - [Administrative Guide](https://download.microsoft.com/download/0/8/4/08468080-540b-4326-91bf-f2a33b7e1764/administrative%20guidance%20for%20software%20full%20disk%20encryption%20clients.pdf) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid10540-vr.pdf) ### Windows 8, Windows RT, and Windows Server 2012 IPsec VPN Client Certified against the Protection Profile for IPsec Virtual Private Network (VPN) Clients. - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid10529-st.pdf) - [Administrative Guide](https://download.microsoft.com/download/a/9/f/a9fd7e2d-023b-4925-a62f-58a7f1a6bd47/microsoft%20windows%208%20windows%20server%202012%20supplemental%20admin%20guidance%20ipsec%20vpn%20client.docx) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid10529-vr.pdf) ### Windows 7 and Windows Server 2008 R2 Certified against the Protection Profile for General Purpose Operating Systems. - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid10390-st.pdf) - [Administrative Guide](https://www.microsoft.com/downloads/en/details.aspx?familyid=ee05b6d0-9939-4765-9217-63083bb94a00) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid10390-vr.pdf) ### Microsoft Windows Server 2008 R2 Hyper-V Role - [Security Target](https://www.microsoft.com/download/en/details.aspx?id=29305) - [Administrative Guide](https://www.microsoft.com/download/en/details.aspx?id=29308) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/0570a_pdf.pdf) ### Windows Vista and Windows Server 2008 at EAL4+ - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid10291-st.pdf) - [Administrative Guide](https://www.microsoft.com/downloads/en/details.aspx?familyid=06166288-24c4-4c42-9daa-2b2473ddf567) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid10291-vr.pdf) ### Windows Vista and Windows Server 2008 at EAL1 - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/efs-t005_msvista_msserver2008_eal1_st_v1.0.pdf) - [Administrative Guide](https://www.microsoft.com/downloads/en/details.aspx?familyid=06166288-24c4-4c42-9daa-2b2473ddf567) - [Certification Report](https://www.commoncriteriaportal.org/files/epfiles/efs-t005_msvista_msserver2008_eal1_cr_v1.0.pdf) ### Microsoft Windows Server 2008 Hyper-V Role - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/0570b_pdf.pdf) - [Administrative Guide](https://www.microsoft.com/downloads/en/details.aspx?familyid=cb19538d-9e13-4ab6-af38-8f48abfdad08) - [Certification Report](http://www.commoncriteriaportal.org:80/files/epfiles/0570a_pdf.pdf) ### Windows Server 2003 Certificate Server - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid9507-st.pdf) - [Administrator's Guide](https://www.microsoft.com/downloads/en/details.aspx?familyid=445093d8-45e2-4cf6-884c-8802c1e6cb2d) - [Configuration Guide](https://www.microsoft.com/downloads/en/details.aspx?familyid=46abc8b5-11be-4e3d-85c2-63226c3688d2) - [User's Guide](https://www.microsoft.com/downloads/en/details.aspx?familyid=74f66d84-2654-48d0-b9b5-b383d383425e) - [Evaluation Technical Report](https://www.microsoft.com/downloads/details.aspx?familyid=a594e77f-dcbb-4787-9d68-e4689e60a314) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid9507-vr.pdf) ### Windows Rights Management Services - [Security Target](https://www.commoncriteriaportal.org/files/epfiles/st_vid10224-st.pdf) - [Validation Report](https://www.commoncriteriaportal.org/files/epfiles/st_vid10224-vr.pdf)
91.485944
700
0.813433
yue_Hant
0.325159
d9edd51d386643a5668387afb5059362b27d76b6
1,167
md
Markdown
README.md
ponnys-podfer/yint
ef49c1363b921d48a093d2899d593c13dce6d14f
[ "BSD-3-Clause" ]
7
2016-12-16T04:35:35.000Z
2018-10-28T06:10:38.000Z
README.md
ponnys-podfer/yint
ef49c1363b921d48a093d2899d593c13dce6d14f
[ "BSD-3-Clause" ]
null
null
null
README.md
ponnys-podfer/yint
ef49c1363b921d48a093d2899d593c13dce6d14f
[ "BSD-3-Clause" ]
null
null
null
Yint: A TinyMUD Compatible MUD server ------------------------------------- Yint is a fairly straight, mechanical translation of the [MangledMUD][mm] code from Ruby to Hoon. (MangledMUD was a mechanical translation of the original TinyMUD code from C to Ruby.) Unlike MangledMUD, on top of the mechanical porting, we further do some minor cleanup to make Yint more idiomatic Hoon code. The code under `app/`, `gen/`, `lib/` and `sur/` should be copied onto a fresh desk, we'll use `/=yint=` in these instructions. Copy the data in `data/` somewhere accessible. You should be able to then start the `%yint` app, and load phrases and a world. > =dir /=yint= > |start %yint > :yint|load-phrases <path/to/phrases.json> > :yint|import <path/to/caves.txt or other database> License ------- `%yint` started as a mechanical translation of [MangledMUD][mm], which itself was a rewrite of the original [TinyMUD][tm] codebase. I've obtained permission from both the authors of MangledMUD and TinyMUD to release this code under the [BSD-3 license][bsd] [mm]: https://github.com/mangled/MangledMud/ [tm]: https://en.wikipedia.org/wiki/TinyMUD [bsd]: LICENSE
53.045455
309
0.710368
eng_Latn
0.979921
d9edd57f9d637ea9d7e959791a5f16e5a9dba968
143
md
Markdown
_posts/0000-01-05-Zimmyb.md
Zimmyb/github-slideshow
51aa48746e73fbee3329f040e2ff7bd6fd9f9877
[ "MIT" ]
null
null
null
_posts/0000-01-05-Zimmyb.md
Zimmyb/github-slideshow
51aa48746e73fbee3329f040e2ff7bd6fd9f9877
[ "MIT" ]
3
2021-09-08T12:58:20.000Z
2021-09-22T20:55:06.000Z
_posts/0000-01-05-Zimmyb.md
Zimmyb/github-slideshow
51aa48746e73fbee3329f040e2ff7bd6fd9f9877
[ "MIT" ]
null
null
null
--- layout: slide title: "Welcome to our fifth slide!" --- I am passionate about innovative technology. Use the left arrow to go back! Bold
13
44
0.72028
eng_Latn
0.996579
d9ef82ef8aa657ace2f102ba737128ac2ad1478c
701
md
Markdown
pages/1.14/cli/command-reference/dcos-security/dcos-security-org/dcos-security-org-service-accounts/dcos-security-org-service-accounts-delete/index.md
farhan5900/dcos-docs-site
0797219a9fe2e23f3f7eca94318f6b46913bfffe
[ "Apache-2.0" ]
null
null
null
pages/1.14/cli/command-reference/dcos-security/dcos-security-org/dcos-security-org-service-accounts/dcos-security-org-service-accounts-delete/index.md
farhan5900/dcos-docs-site
0797219a9fe2e23f3f7eca94318f6b46913bfffe
[ "Apache-2.0" ]
null
null
null
pages/1.14/cli/command-reference/dcos-security/dcos-security-org/dcos-security-org-service-accounts/dcos-security-org-service-accounts-delete/index.md
farhan5900/dcos-docs-site
0797219a9fe2e23f3f7eca94318f6b46913bfffe
[ "Apache-2.0" ]
null
null
null
--- layout: layout.pug navigationTitle: dcos security org service-accounts delete title: dcos security org service-accounts delete menuWeight: 170 excerpt: Deleting a service account render: mustache model: /1.14/data.yml enterprise: true --- # Description The `dcos security org service-accounts delete` command allows you to delete a service account identified by a Service Account ID (SID). # Usage ``` dcos security org service-accounts delete [OPTIONS] SID ``` # Options | Name | Description | |---------|-------------| | `-h`, `--help` | Show this message and exit.| ## Positional Arguments | Name | Description | |---------|-------------| | `SID` | Service account ID. (Required)|
21.242424
136
0.677603
eng_Latn
0.79405
d9efc34eaabd3f6deaf1433d98c8b607b0d45dd6
258
md
Markdown
README.md
pmodin/common-words
54951b2e3a0d10e1aa968f2dfe6740aa6394a1be
[ "Unlicense" ]
null
null
null
README.md
pmodin/common-words
54951b2e3a0d10e1aa968f2dfe6740aa6394a1be
[ "Unlicense" ]
null
null
null
README.md
pmodin/common-words
54951b2e3a0d10e1aa968f2dfe6740aa6394a1be
[ "Unlicense" ]
null
null
null
# common-words Generate a list of common words, ignoring case, using Wikipedia as source. Configure language and number of queries to your liking. Will print current title as progress (to STDERR). Suggested usage: ``` ruby common_words.rb > outfile.txt ```
25.8
75
0.771318
eng_Latn
0.99532
d9efcc8d8dea80b4a52dce7d56536ed8c6831de4
196
md
Markdown
_posts/2017-07-23-t888946434086547456.md
Summonee/summonee.github.io
1102d3606a34ea24adf539b969479d19a1b701e1
[ "MIT" ]
2
2015-02-14T09:51:50.000Z
2017-01-23T19:08:24.000Z
_posts/2017-07-23-t888946434086547456.md
Summonee/summonee.github.io
1102d3606a34ea24adf539b969479d19a1b701e1
[ "MIT" ]
1
2015-04-05T01:16:52.000Z
2015-04-05T01:16:52.000Z
_posts/2017-07-23-t888946434086547456.md
Summonee/summonee.github.io
1102d3606a34ea24adf539b969479d19a1b701e1
[ "MIT" ]
null
null
null
--- layout: post microblog: true date: 2017-07-23 15:18 +1300 guid: http://JacksonOfTrades.micro.blog/2017/07/23/t888946434086547456.html --- @MyEldarose Great now I'm dreaming of the Dark Tower.
24.5
75
0.755102
yue_Hant
0.702956
d9efd4f494fef850fcf82b98b516c395f4875015
2,360
md
Markdown
docs/html5upload.md
RhubarbPHP/Module.Leaf.Html5Upload
dc5aad581513ecd635f3b1d96300070d7e60bc0c
[ "Apache-2.0" ]
null
null
null
docs/html5upload.md
RhubarbPHP/Module.Leaf.Html5Upload
dc5aad581513ecd635f3b1d96300070d7e60bc0c
[ "Apache-2.0" ]
null
null
null
docs/html5upload.md
RhubarbPHP/Module.Leaf.Html5Upload
dc5aad581513ecd635f3b1d96300070d7e60bc0c
[ "Apache-2.0" ]
1
2017-05-18T10:02:25.000Z
2017-05-18T10:02:25.000Z
Html5FileUpload =========== > This component is part of the "rhubarbphp/module-leaf-html5upload" composer package. The Html5FileUpload control extends the SimpleFileUpload class to allow use of modern HTML 5 XHR uploading. If supported the control will present the following elements during upload: * 'Cancel Upload' button * Progress bar * Upload speed indication ## Standard usage For simple behaviour using the control is identical to using the SimpleFileUpload control and the same `fileUploadedEvent` is raised. However you should be aware that the event could be raised either during an XHR request or a normal POST request (if the client doesn't support HTML 5) and so if you are upgrading from SimpleFileUpload it's likely the overall strategy for your page may need to change. ## Additional properties and methods setAllowMultipleUploads(bool) : True to enable multiple uploads from a single selection setIndicators(Html5FileUploadIndicators) : Sets an object of type Html5FileUploadIndicators that has the following four boolean flags uploadSpeed, timeRemaining, overallProgress (e.g. 1 of 3), currentFileName. These flags control which elements are present during upload in the indication area. getIndicators() : Gets the current Html5FileUploadIndicators flag set. ## Customising Upload Behaviours The view bridge of the upload emits events at key integration points allowing for some very individual cases a place to handle these within a parent view bridge. The client events raised are: "UploadStarted" : Raised when a new file starts uploading. The javascript File object is passed as an argument. "ProgressReported" : Raised when a new upload progress data is available. The javascript File object and a progress structure are passed as arguments. "UploadCompleted" : Raised when a file upload completes. The javascript file object is passed as an argument. "UploadCancelled" : Raised when the user clicks "Cancel Upload" The other approach is to extend the Leaf, View and ViewBridge to change or wrap the existing behaviours in a new upload control. ## Examples ### Out-of-the-box upload ``` demo[examples/SingleUpload/SingleUploadExample.php] ``` ### Upload with 'existing file' support ``` demo[examples/SingleUploadWithPersistence/SingleHtml5FileUploadWithPersistenceExample.php] ```
35.223881
107
0.789831
eng_Latn
0.990299
d9f02598cdd3b0957054b172987fae9378aa63fa
1,070
md
Markdown
README.md
davidcliddell/ADS1115_WE
626f0c253b5886e6827dbb086b814c08242acd04
[ "MIT" ]
31
2020-07-07T21:27:32.000Z
2022-02-06T11:39:39.000Z
README.md
davidcliddell/ADS1115_WE
626f0c253b5886e6827dbb086b814c08242acd04
[ "MIT" ]
21
2020-07-25T14:47:20.000Z
2021-09-10T12:16:18.000Z
README.md
davidcliddell/ADS1115_WE
626f0c253b5886e6827dbb086b814c08242acd04
[ "MIT" ]
15
2020-07-25T14:48:25.000Z
2022-02-04T06:17:40.000Z
# ADS1115_WE An Arduino library for the 16-bit, 4 channel ADS1115 ADC with gain and alert functions. I have have tried to optimize the library for convenience to use. If you try the examples I recommend to start with `Single_Shot.ino`. You can find more details here: https://wolles-elektronikkiste.de/ads1115 (German) https://wolles-elektronikkiste.de/en/ads1115-a-d-converter-with-amplifier (English) All features of the ADS1115 are implemented, including alert functions. In version 1.3.0 I have added a feature to the continuous mode, which ensures that you can change channels safely without risking that the first data read is still from the former channel. If you experienced this issue, you might have solved it with a delay. If this applies to you, you can delete the delays. It seems there are modules out there which do not have the full 16 bit resolution. It's not an issue of this library: https://github.com/wollewald/ADS1115_WE/issues/15 If you like the library it would be cool if you can give it a star. If you find bugs, please inform me.
46.521739
139
0.783178
eng_Latn
0.99896
d9f0c8ce28a4e34087e0bb31a5fa6c6bda13bd5b
1,047
md
Markdown
_posts/2010-08-26-police-gear.md
BlogToolshed50/nomorecutting.org
fd2ea638275cacd0b9404d0bb4a49dc8807a495f
[ "CC-BY-4.0" ]
null
null
null
_posts/2010-08-26-police-gear.md
BlogToolshed50/nomorecutting.org
fd2ea638275cacd0b9404d0bb4a49dc8807a495f
[ "CC-BY-4.0" ]
null
null
null
_posts/2010-08-26-police-gear.md
BlogToolshed50/nomorecutting.org
fd2ea638275cacd0b9404d0bb4a49dc8807a495f
[ "CC-BY-4.0" ]
null
null
null
--- id: 237 title: Police Gear date: 2010-08-26T00:00:00+00:00 author: admin layout: post guid: http://acetile.net/2008/09/28/police-gear/ permalink: /2010/08/26/police-gear/ categories: - Uncategorized --- If you are looking for a larger selection of tactical products, 5.11 Tactical Outdoors is the best choice for you.One of their 5.11 Tactical category provides you superior products that enhance the safety, accuracy, speed and performance of law enforcement, military and firefighting professionals.They provide many type of products like clothing, Footwear, Undergear Shirts,TDU Uniforms,Jackets,Watches and more.Tactical Knives are a functional combination of durability and accessibility at very competitive prices.L.A Police Gear offers four styles of high quality eyewear which are trendy and safety too.They provide Tactical Bags and Accessories like Back-up Belt System, Cuff Pouch, Holster Pouch, Baton Pouch, Mace Pouch, Double Mag Pouch, Ties and Knee Pads which are specially designed for Law Enforcement Officers and Operators.
87.25
838
0.807068
eng_Latn
0.993606
d9f16eaf35142cfaea65e0b1c9804a16d523b611
927
md
Markdown
README.md
ablersch/software-developer-ihk-modul-1
0665cf34d209b95ae23a15d08d1fc17bfbba5e15
[ "MIT" ]
null
null
null
README.md
ablersch/software-developer-ihk-modul-1
0665cf34d209b95ae23a15d08d1fc17bfbba5e15
[ "MIT" ]
null
null
null
README.md
ablersch/software-developer-ihk-modul-1
0665cf34d209b95ae23a15d08d1fc17bfbba5e15
[ "MIT" ]
null
null
null
# Modul I - C# Grundlagen Diese Repository beinhaltet die Unterlagen für den Kurs **Software Developer IHK** ## Material * [Im Browser](https://ablersch.github.io/software-developer-ihk-modul-1) * [Druckversion](https://ablersch.github.io/software-developer-ihk-modul-1?print-pdf) Optimiert für Chrome! ## Erstellen und ausführen * Installiere [Node.js](https://nodejs.org/en/) * Clone repository * Starte `npm install` um alle Abhängigkeiten zu installieren * Starte `npm run build` um die Präsentation im `dist` Ordner zu erstellen * Starte `npm start` während der Inhaltserstellung um einen lokalen Entwicklungsserver zu starten ## Inhalt * Kurs Organisation * Grundlagen DotNet und C# * Programmaufbau * Codekonventionen * Datentypen * Variablen * Operatoren * Kontrollstrukturen * Arrays * Strings * Enumerations * Methoden * Hilfestellungen und Tipps für Visual Studio Mit Übungsaufgaben zu den einzelnen Themen.
25.75
97
0.77562
deu_Latn
0.958365
d9f1d94c4641331c11b56a52a2134f6c8269bfe1
11,521
md
Markdown
README.md
rlwhatley3/clickup-gremlins
94c9bd78b22181ae715a90ce9578c3a629360895
[ "MIT" ]
null
null
null
README.md
rlwhatley3/clickup-gremlins
94c9bd78b22181ae715a90ce9578c3a629360895
[ "MIT" ]
null
null
null
README.md
rlwhatley3/clickup-gremlins
94c9bd78b22181ae715a90ce9578c3a629360895
[ "MIT" ]
null
null
null
# gremlins.js gremlins.js is a monkey testing library written in JavaScript, for Node.js and the browser. Use it to check the robustness of web applications by unleashing a horde of undisciplined gremlins. > Kate: *What are they, Billy?* > > Billy Peltzer: *They're gremlins, Kate, just like Mr. Futterman said.* ![TodoMVC attacked by gremlins](http://static.marmelab.com/todo.gif) ## Purpose While developing an HTML5 application, did you anticipate uncommon user interactions? Did you manage to detect and patch all memory leaks? If not, the application may break sooner or later. If n random actions can make an application fail, it's better to acknowledge it during testing, rather than letting users discover it. Gremlins.js simulates random user actions: gremlins click anywhere in the window, enter random data in forms, or move the mouse over elements that don't expect it. Their goal: triggering JavaScript errors, or making the application fail. If gremlins can't break an application, congrats! The application is robust enough to be released to real users. This practice, also known as [Monkey testing](http://en.wikipedia.org/wiki/Monkey_test) or [Fuzz testing](http://en.wikipedia.org/wiki/Fuzz_testing), is very common in mobile application development (see for instance the [Android Monkey program](http://developer.android.com/tools/help/monkey.html)). Now that frontend (MV*, d3.js, Backbone.js, Angular.js, etc.) and backend (Node.js) development use persistent JavaScript applications, this technique becomes valuable for web applications. ## Basic Usage A gremlins *horde* is an army of specialized gremlins ready to mess up your application. *unleash* the gremlins to start the stress test: ```js var horde = gremlins.createHorde(); horde.unleash(); // gremlins will act randomly, at 10 ms interval, 1000 times ``` `gremlins.js` provides several gremlin *species*: some click everywhere on the page, others enter data in form inputs, others scroll the window in every possible direction, etc. You will see traces of the gremlins actions on the screen (they leave red traces) and in the console log: ``` gremlin formFiller input 5 in <input type=​"number" name=​"age">​ gremlin formFiller input pzdoyzshh0k9@o8cpskdb73nmi.r7r in <input type=​"email" name=​"email">​ gremlin clicker click at 1219 301 gremlin scroller scroll to 100 25 ... ``` A horde also contains *mogwais*, which are harmless gremlins (or, you could say that gremlins are harmful mogwais). Mogwais only monitor the activity of the application and record it on the logger. For instance, the "fps" mogwai monitors the number of frame per second, every 500ms: ``` mogwai fps 33.21 mogwai fps 59.45 mogwai fps 12.67 ... ``` Mogwais also report when gremlins break the application. For instance, if the number of frames per seconds drops below 10, the fps mogwai will log an error: ``` mogwai fps 12.67 mogwai fps 23.56 err > mogwai fps 7.54 < err mogwai fps 15.76 ... ``` After 10 errors, a special mogwai stops the test. He's called *Gizmo*, and he prevents gremlins from breaking applications bad. After all, once gremlins have found the first 10 errors, you already know what you have to do to make your application more robust. If not stopped by Gizmo, the default horde stops after roughly 1 minute. You can increase the number of gremlins actions to make the attack last longer: ```js horde.unleash({ nb: 10000 }); // gremlins will attack at 10 ms interval, 10,000 times ``` Gremlins, just like mogwais, are simple JavaScript functions. If `gremlins.js` doesn't provide the gremlin that can break your application, it's very easy to develop it: ```js // add a new custom gremlin to blur the currently focused element horde.gremlin(function() { document.activeElement.blur(); }); ``` Check the [examples](examples) directory for examples. Everything in `gremlins.js` is configurable ; you will find it very easy to extend and adapt to you use cases. ## Installation In the browser, the `gremlins.min.js` file can be used as a standalone library, and adds `gremlins` to the global namespace: ```html <script src="path/to/gremlins.min.js"></script> <script> gremlins.createHorde().unleash(); </script> ``` Alternately, you can include `gremlins.min.js` as a RequireJS module, leaving the global namespace clean: ```js require.config({ paths: { gremlins: 'path/to/gremlins.min' } }); require(['gremlins'], function(gremlins) { gremlins.createHorde().unleash(); }); ``` `gremlins.js` is also available as a **bookmarklet**. Go to [this page](https://rawgithub.com/marmelab/gremlins.js/master/bookmarklet.html), grab it, and unleash hordes on any web page. ## Advanced Usage ### Setting Gremlins and Mogwais To Use In A Test By default, all gremlins and mogwais species are added to the horde. You can also choose to add only the gremlins species you want, using the `gremlin()` function of the `horde` object: ```js gremlins.createHorde() .gremlin(gremlins.species.formFiller()) .gremlin(gremlins.species.clicker().clickTypes(['click'])) .gremlin(gremlins.species.toucher()) .gremlin(gremlins.species.scroller()) .gremlin(function() { window.$ = function() {}; }) .unleash(); ``` If you just want to add your own gremlins in addition to the default ones, use the `allGremlins()` function: ```js gremlins.createHorde() .allGremlins() .gremlin(function() { window.$ = function() {}; }) .unleash(); ``` To add just the mogwais you want, use the `mogwai()` and `allMogwais()` method the same way. `gremlins.js` currently provides a few gremlins and mogwais: * [clickerGremlin](src/species/clicker.js) clicks anywhere on the visible area of the document * [toucherGremlin](src/species/toucher.js) touches anywhere on the visible area of the document * [formFillerGremlin](src/species/formFiller.js) fills forms by entering data, selecting options, clicking checkboxes, etc * [scrollerGremlin](src/species/scroller.js) scrolls the viewport to reveal another part of the document * [typerGremlin](src/species/typer.js) types keys on the keyboard * [alertMogwai](src/mogwais/alert.js) prevents calls to alert() from blocking the test * [fpsMogwai](src/mogwais/fps.js) logs the number of frames per seconds (FPS) of the browser * [gizmoMogwai](src/mogwais/gizmo.js) can stop the gremlins when they go too far ### Configuring Gremlins All the gremlins and mogwais provided by `gremlins.js` are *configurable functions*, i.e. you can alter the way they work by calling methods on them. For instance, the clicker gremlin is a function that you can execute it directly: ```js var clickerGremlin = gremlins.species.clicker(); clickerGremlin(); // trigger a random mouse event in the screen: ``` In JavaScript, functions are objects, and as such can have methods. The clicker gremlin function offers customizing methods: ```js gremlins.species.clicker() .clickTypes(['click']) // which mouse event types will be triggered .canClick(function(element) { // only click elements in bar return $(element).parents('#bar').length; // when canClick returns false, the gremlin will look for another // element to click on until maxNbTries is reached }) .showAction(function(x, y) { // by default, the clicker gremlin shows its action by a red circle // overriding showAction() with an empty function makes the gremlin action invisible }) ``` Each particular gremlin or mogwai has its own customization methods, check the source for details. **Tip**: For more information on configurable functions check [this blog post about service closures](http://redotheweb.com/2013/11/13/from-objects-to-functions-service-closures.html). ### Seeding The Randomizer If you want the attack to be repeatable, you need to seed the random number generator. Gremlins.js depends on [Chance.js](http://chancejs.com/) for random data generation, so it supports seeding: ```js // seed the randomizer horde.seed(1234); ``` ### Executing Code Before or After The Attack Before starting the attack, you may want to execute custom code. This is especially useful to: * Start a profiler * Disable some features to better target the test * Bootstrap the application For this usage, the `horde` object provides a `before()` method, which accepts a callback: ```js horde.before(function startProfiler() { console.profile('gremlins'); }); ``` To clean up the test environment, the `horde` object also provides an `after()` method. ```js horde.after(function stopProfiler() { console.profileEnd(); }); ``` Both `before()` and `after()` support asynchronous callbacks: ```js horde.before(function waitFiveSeconds(done) { window.setTimeout(done, 5000); }); ``` ### Setting Up a Strategy By default, gremlins will attack in random order, in a uniform distribution, separated by a delay of 10ms. This attack strategy is called the [distribution](src/strategies/distribution.js) strategy. You can customize it using the `horde.strategy()` method: ```js horde.strategy(gremlins.strategies.distribution() .delay(50) // wait 50 ms between each action .distribution([0.3, 0.3, 0.3, 0.1]) // the first three gremlins have more chances to be executed than the last ) ``` You can also use another strategy. A strategy is just a callback expecting three parameters: an array of gremlins, a parameter object (the one passed to `unleash()`), and a final callback. Two other strategies are bundled ([allTogether](src/strategies/allTogether.js) and [bySpecies](src/strategies/bySpecies.js)), and it should be fairly easy to implement a custom strategy for more sophisticated attack scenarios. ### Stopping The Attack The horde can stop the attack in case of emergency using the `horde.stop()` method. Gizmo uses this method to prevent further damages to the application after 10 errors, and you can use it, too, if you don't want the attack to continue. ### Customizing The Logger By default, gremlins.js logs all gremlin actions and mogwai observations in the console. If you prefer using an alternative logging method (for instance, storing gremlins activity in LocalStorage and sending it in Ajax once every 10 seconds), just provide a logger object with 4 methods (log, info, warn, and error) to the `logger()` method: ```js var customLogger = { log: function(msg) { /* .. */ }, info: function(msg) { /* .. */ }, warn: function(msg) { /* .. */ }, error: function(msg) { /* .. */ } }; horde.logger(customLogger); ``` **Tip**: Instead of reimplementing your custom logger, you may want to look at [Minilog](https://github.com/mixu/minilog). ## Contributing Your feedback about the usage of gremlins.js in your specific context is valuable, don't hesitate to [open GitHub Issues](https://github.com/marmelab/gremlins.js/issues) for any problem or question you may have. All contributions are welcome. New gremlins, new mogwais, new strategies, should all be tested against the two examples bundled in the application. Try to follow the functional programming style. Also, don't forget to rebuild the minified version of the library using `make`. While developing, you can use the command `make watch` to prevent from rebuilding at each step. In this case, just include the library using: ``` html <script src="http://localhost:8080/gremlins.min.js"></script> ``` To build library, use `make build`. ## License gremlins.js is licensed under the [MIT Licence](LICENSE), courtesy of [marmelab](http://marmelab.com).
41.592058
490
0.748112
eng_Latn
0.977034
d9f26ce4016d6330b1c4ac0f927b1ff8ca36ae25
2,552
md
Markdown
Google CTF 2018 Quals Beginners Quest/JS safe/README.md
p-g-krish/CTF-Writeups
05ad6a9ecbc19ceb8890f4581dfee36f16d164aa
[ "MIT" ]
51
2018-06-26T09:49:42.000Z
2019-09-14T00:06:35.000Z
Google CTF 2018 Quals Beginners Quest/JS safe/README.md
p-g-krish/CTF-Writeups
05ad6a9ecbc19ceb8890f4581dfee36f16d164aa
[ "MIT" ]
1
2018-06-29T18:40:59.000Z
2018-07-09T20:29:41.000Z
Google CTF 2018 Quals Beginners Quest/JS safe/README.md
p-g-krish/CTF-Writeups
05ad6a9ecbc19ceb8890f4581dfee36f16d164aa
[ "MIT" ]
22
2019-10-03T14:52:43.000Z
2022-01-17T08:55:10.000Z
# JS safe > https://ctftime.org/writeup/10298 When we look at the open_safe() function we can see that it requires our input to be in form `CTF{[0-9a-zA-Z_@!?-]+}` and only the middle part is checked. We can't just skip password verification, because it is used as encryption key and we'll got wrong result. Now, let's proceed to x() function which checks if our input is valid. I copied this function to scratchpad in Firefox, so I can easily modify it and immediately see the results. First, let's add the following code ```js if(/g/.test(code.substr(i,4))) { console.log(i); console.log(env[fn]); console.log(env); console.log(code.substr(i,4)); break; } ``` `env[g]` contains our input, so probably nothing very important happens before it is used. W we have to notice is that this code can not only do some calculations on numbers, but it also can create strings and functions. The other thing is that if object property doesn't exist and we try to write something to it, JS will just add the property. When we dump `env` object (i==876) we can see something interesting. There is SubtleCrypto in one property and we have also digest function and `sha-256` parameter. Let's see what happens next. ```js if(i==880) ``` In the last property we have an array of `sha-256` string and Uint8Array with our password. It will be probably passed as an argument to digest() function. I added some pseudo disassembly to see what's going on later. ```js if(i>=872) { console.log(i); console.log(lhs+"="+fn+"("+arg1+","+arg2+")") console.log(lhs+"="+env[fn]+"("+env[arg1]+","+env[arg2]+")") } if(i==980) { console.log(env); break; } ``` For i=940 they move hash of our input to `env[Ѿ]` and for i=960 they move first byte of it to `env[ѿ]`. Then they xor the result with 230 and `or` it to `env[h]` which is used to check if the password was correct. (`env[h]` must be zero, so all xors need to be zero too) `xor a,b` gives 0 only if `a=b`, so we know that first byte of our hash must equal 230. Replace our disassembler with ```js var hash =[]; for (var i = 0; i < code.length; i += 4) { var [lhs, fn, arg1, arg2] = code.substr(i, 4); if(fn=='ѡ') { hash.push(env[arg1][1]); } ``` Now we know the required hash of our password ` 230,104,96,84,111,24,205,187,205,134,179,94,24,181,37,191,252,103,247,114,198,80,206,223,227,255,122,0,38,250,29,238` -> `e66860546f18cdbbcd86b35e18b525bffc67f772c650cedfe3ff7a0026fa1dee` As they mentioned in the comment we can google for this hash and we get the password `Passw0rd!` Flag: `CTF{Passw0rd!}`
41.836066
270
0.711991
eng_Latn
0.996184
d9f2a07a3dd127c59b00e0a09f1a7335c561c6ea
1,120
md
Markdown
src/chicharrones.md
lorenzobotti/based.cooking
e186559313087482e887f59e9edb95e6ab5bf6ad
[ "CC0-1.0" ]
1,808
2021-03-10T17:13:41.000Z
2022-03-30T19:03:36.000Z
src/chicharrones.md
lorenzobotti/based.cooking
e186559313087482e887f59e9edb95e6ab5bf6ad
[ "CC0-1.0" ]
337
2021-03-10T19:54:03.000Z
2022-03-24T17:14:19.000Z
src/chicharrones.md
lorenzobotti/based.cooking
e186559313087482e887f59e9edb95e6ab5bf6ad
[ "CC0-1.0" ]
667
2021-03-10T17:48:51.000Z
2022-03-31T23:35:54.000Z
# Chicharrones ## Ingredients - Pork Butt with fat - Adobo Goya all purpose - Cumin - Goya Naranja juice - Corn oil (preferred) ## Directions 1. Cut pork butt to around bite sized pieces with fat attached for frying and flavor. 2. Add Adobo Goya and spread evenly throughout the pork 3. Add Black pepper 1 ml 4. Add Cumin 1 ml 5. Add Salt 5 ml 6. Add Goya Naranja 15 ml 7. Rub all of it to spread the spices along the meat 8. Have a colander to put the Chicharonnes in after having fried it and have another pot on the bottom that has some paper inside for oil 9. Put it in deep dish skillet around Medium (3-4) heat cover with lid for around 30-35 mins till you see it's cooked, turning to make sure everything is cooking evenly 10. After it dries up at around 30-35 mins put the temperature to High (6-7) without the lid 11. Put some oil to make sure it doesn't stick too much 12. Use spoon to spin/stir and fry until a golden brown 13. Take out the Chicharonnes and put into the colander. You may keep some of the fried bits that come off to eat as well. ## Contribution - Abuela's Cooking ;tags: mexican pork
36.129032
168
0.758036
eng_Latn
0.999096
d9f2c24a88d694b0e59e28f3e38eea5670a1e8dc
174,157
md
Markdown
intune/whats-new-archive.md
hyoshioka0128/IntuneDocs.ja-jp
814ae6d182d8dd91ecd77a8ce619752609849af7
[ "CC-BY-4.0", "MIT" ]
null
null
null
intune/whats-new-archive.md
hyoshioka0128/IntuneDocs.ja-jp
814ae6d182d8dd91ecd77a8ce619752609849af7
[ "CC-BY-4.0", "MIT" ]
null
null
null
intune/whats-new-archive.md
hyoshioka0128/IntuneDocs.ja-jp
814ae6d182d8dd91ecd77a8ce619752609849af7
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Microsoft Intune の過去数か月の新機能 - Azure | Microsoft Docs titlesuffix: '' description: Intune の新機能に関するページの過去の通知を確認する keywords: '' author: ErikjeMS ms.author: erikje manager: dougeby ms.date: 2/25/2019 ms.topic: archived ms.prod: '' ms.service: microsoft-intune ms.localizationpriority: medium ms.technology: '' ms.assetid: 9ba01d60-4a03-4e3e-9aba-8be905c0054c ROBOTS: NOINDEX,NOFOLLOW ms.reviewer: '' ms.suite: ems search.appverid: MET150 ms.custom: intune-azure ms.collection: M365-identity-device-management ms.openlocfilehash: ceefcfbcdf48cf8d450f5a74274bc1beea951cc5 ms.sourcegitcommit: 25e6aa3bfce58ce8d9f8c054bc338cc3dff4a78b ms.translationtype: MTE75 ms.contentlocale: ja-JP ms.lasthandoff: 03/14/2019 ms.locfileid: "57461551" --- # <a name="whats-new-in-the-microsoft-intune---previous-months"></a>Microsoft Intune の新機能 (過去数か月) [!INCLUDE [azure_portal](./includes/azure_portal.md)] <!-- ########################## --> ## <a name="september-2018"></a>2018 年 9 月 ### <a name="app-management"></a>アプリ管理 #### <a name="remove-duplication-of-app-protection-status-tiles----3083391---"></a>アプリ保護ステータス タイルの重複削除 <!-- 3083391 --> **[iOS のユーザーの状態]** タイルと **[Android のユーザーの状態]** タイルは、**[クライアント アプリ - 概要]** ページと **[クライアント アプリ - アプリ保護ステータス]** ページの両方に表示されていました。 重複を避けるために、**[クライアント アプリ - 概要]** ページからステータス タイルが削除されました。 ### <a name="device-configuration"></a>デバイス構成 #### <a name="support-for-more-third-party-certification-authorities-ca----3093107---"></a>サードパーティ証明書機関 (CA) のサポート追加 <!-- 3093107 --> Simple Certificate Enrollment Protocol (SCEP) を利用することで、Windows、iOS、Android、macOS を搭載するモバイル デバイスで新しい証明書を発行したり、証明書を更新したりできるようになりました。 ### <a name="device-enrollment"></a>デバイスの登録 #### <a name="intune-moves-to-support-ios-10-and-later----2454656---"></a>Intune サポートが iOS 10 以降に <!-- 2454656 --> 今後、Intune の登録、ポータル サイト、Managed Browser は iOS 10 以降を搭載して iOS デバイスのみでサポートされます。 組織で影響を受けるデバイスやユーザーを確認するには、Azure portal で Intune にアクセスし、**[デバイス]**、**[すべてのデバイス]** の順に選択します。 OS で絞り込み、**[列]** をクリックして OS バージョン詳細を表示します。 サポートされている OS バージョンにデバイスをアップグレードするようにユーザーに依頼します。 以下に一覧したデバイスのいずれかを所有している場合、または以下に一覧したデバイスのいずれかを登録する場合、それらのデバイスは iOS 9 以前しかサポートしていないので注意してください。 Intune ポータル サイトに引き続きアクセスするには、iOS 10 以降をサポートするデバイスにそれらのデバイスをアップグレードする必要があります。 * iPhone 4S * iPod Touch * iPad 2 * iPad (第 3 世代) * iPad Mini (第 1 世代) ### <a name="device-management"></a>デバイス管理 #### <a name="microsoft-365-device-management-administration-center----3078424---"></a>Microsoft 365 デバイス管理の管理センター <!-- 3078424 --> Microsoft 365 で Microsoft が約束することの 1 つは簡単な管理です。長年、Intune や Azure AD 条件付きアクセスなどのエンドツーエンド シナリオを届けるべく、Microsoft はバックエンド Microsoft 365 サービスを統合してきました。 新しい [Microsoft 365 管理センター](http://devicemanagement.microsoft.com)は、管理業務を連結、簡素化、統合する場所です。 デバイス管理のスペシャリスト向けワークスペースでは、組織で必要とされるあらゆるデバイス/アプリ管理情報/作業に簡単にアクセスできます。 企業のエンドユーザー コンピューティング チームにとってはこれが主要なクラウド ワークスペースになるものと Microsoft は予想しています。 <!-- ########################## --> ## <a name="august-2018"></a>2018 年 8 月 ### <a name="app-management"></a>アプリ管理 #### <a name="packet-tunnel-support-for-ios-per-app-vpn-profiles-for-custom-and-pulse-secure-connection-types----1520957---"></a>接続の種類がカスタムと Pulse Secure の場合における、iOS のアプリごとの VPN プロファイルに対するパケット トンネル サポート <!-- 1520957 --> iOS のアプリごとの VPN プロファイルを使用するときに、アプリ層トンネリング (アプリプロキシ) またはパケット レベル トンネリング (パケットトンネル) を使用することを選択できます。 これらのオプションは、次の接続の種類で利用できます。 - カスタム VPN - Pulse Secure: 使用する値がわからない場合、ご利用の VPN プロバイダーのドキュメントを参照してください。 #### <a name="delay-when-ios-software-updates-are-shown-on-the-device----1949583---"></a>iOS ソフトウェア更新がデバイスに表示されるときの遅延 <!-- 1949583 --> Intune の **[ソフトウェアの更新]** の **[iOS のポリシーを更新する]** で、デバイスにあらゆる更新プログラムをインストールしない日時を構成できます。 今後の更新では、1 日から 90 日までの間で、ソフトウェア更新が表示されるタイミングを遅らせることができるようになります。 [こちら](software-updates-ios.md)に Microsoft Intune で iOS 更新ポリシーを構成する方法が説明されていますが、ここに現在の設定が一覧になっています。 #### <a name="office-365-proplus-version----2213968---"></a>Office 365 ProPlus バージョン <!-- 2213968 --> Intune を利用して Office 365 ProPlus アプリを Windows 10 デバイスに割り当てるとき、Office のバージョンを選択できるようになります。 Azure portal で、**[Microsoft Intune]**、**[アプリ]**、**[アプリの追加]** の順に選択します。 次に、**[種類]** ドロップダウン リストから **[Office 365 ProPlus Suite (Windows 10)]** を選択します。 **[アプリ スイートの設定]** を選択し、関連ブレードを表示します。 **[更新チャネル]** を **[毎月]** などの値に設定します。 任意で、**[はい]** を選択し、エンド ユーザー デバイスから Office のその他のバージョン (msi) を削除します。 **[特定]** を選択すると、選択されているチャネルで特定のバージョンの Office がエンド ユーザー デバイスにインストールされます。 この時点で、使用する**特定のバージョン**の Office を選択できます。 使用できるバージョンは随時変更されます。 そのため、新しいデプロイを作成するとき、利用できるバージョンが新しく、特定の古いバージョンを利用できないことがあります。 現在のデプロイでは引き続き古いバージョンをデプロイできますが、バージョンの一覧はチャネル単位で継続的に更新されます。 詳細については、「[Office 365 ProPlus 更新プログラム チャネルの概要](https://docs.microsoft.com/DeployOffice/overview-of-update-channels-for-office-365-proplus)」をご覧ください。 #### <a name="support-for-register-dns-setting-for-windows-10-vpn----2282852---"></a>Windows 10 VPN の DNS 登録設定をサポート <!-- 2282852 --> この更新では、カスタム プロファイルを使用しなくても、内部 DNS を使用し、VPN インターフェイスに割り当てられている IP アドレスを動的に登録するように、Windows 10 VPN プロファイルを構成できるようになります。 現在の VPN プロファイルの設定に関する詳細については、「[Intune での Windows 10 VPN の設定](vpn-settings-windows-10.md)」を参照してください。 #### <a name="the-macos-company-portal-installer-now-includes-the-version-number-in-the-installer-file-name---2652728--"></a>macOS ポータル インストーラーはインストーラー ファイル名にバージョン番号を含む <!--2652728--> #### <a name="ios-automatic-app-updates----2729759---"></a>iOS のアプリの自動更新 <!-- 2729759 --> アプリの自動更新は、iOS バージョン 11.0 以上のデバイスとユーザー ライセンスされたアプリの両方で機能します。 ### <a name="device-configuration"></a>デバイス構成 #### <a name="windows-hello-will-target-users-and-devices----1106609---"></a>Windows Hello の対象はユーザーとデバイスになります <!-- 1106609 --> [Windows Hello for Business](windows-hello.md) ポリシーを作成すると、そのポリシーは組織内 (テナント全体) のすべてのユーザーに適用されます。 今回の更新によって、デバイス構成ポリシーを使用する特定のユーザーまたは特定のデバイスにもポリシーを適用できるようになりました (**[デバイス構成]**、**[プロファイル]**、**[プロファイルの作成]**、**[ID 保護]**、**[Windows Hello for Business]**)。 Azure portal の Intune では、Windows Hello の構成と設定は、**[デバイスの登録]** と **[デバイス構成]** の両方に存在するようになりました。 **[デバイスの登録]** の対象は組織全体 (テナント全体) であり、Windows AutoPilot (OOBE) がサポートされます。 **[デバイス構成]** の対象は、チェックイン中に適用されたポリシーを使用するデバイスとユーザーになります。 この機能は、以下に適用されます。 - Windows 10 以降 - Windows Holographic for Business #### <a name="zscaler-is-an-available-connection-for-vpn-profiles-on-ios----1769858---"></a>iOS の VPN プロファイルには、Zscaler を接続として利用可能 <!-- 1769858 --> iOS VPN デバイス構成プロファイルを作成するとき (**[デバイス構成]**、**[プロファイル]**、**[プロファイルの作成]** の順に選択し、プラットフォームに **iOS** を選択し、プロファイルの種類に **VPN** を選択する)、Cisco や Citrix など、接続の種類がいくつかあります。 この更新では、接続の種類として Zscaler が追加されます。 [こちらの](vpn-settings-ios.md)iOS を実行するデバイスの VPN 設定リストには、利用できる接続の種類がまとめられています。 #### <a name="fips-mode-for-enterprise-wi-fi-profiles-for-windows-10----1879077---"></a>Windows 10 用の Enterprise Wi-Fi プロファイルに対する FIPS モード <!-- 1879077 --> Intune Azure portal 内の Windows 10 用の Enterprise Wi-Fi プロファイルに対して、Federal Information Processing Standards (FIPS) モードを有効にできるようになりました。 Wi-Fi プロファイルで有効にする場合は、ご使用の Wi-Fi インフラストラクチャで FIPS モードを有効にしていることを確認してください。 「[Intune での Windows 10 以降のデバイス向けの Wi-Fi 設定](wi-fi-settings-windows.md)」では、Wi-Fi プロファイルを作成する方法について示します。 #### <a name="control-s-mode-on-windows-10-and-later-devices---public-preview----1958649---"></a>Windows 10 以降のデバイスで S モードを制御する - パブリック プレビュー <!-- 1958649 --> この機能更新プログラムでは、Windows 10 デバイスの S モードを解除するデバイス構成プロファイルを作成したり、ユーザーがデバイスの S モードを解除することを禁止したりできます。 この機能は Intune の **[デバイス構成]** > **[プロファイル]** > **[Windows 10 以降]** > **[Edition upgrade and mode switch]\(エディション アップグレードとモード切替\)** にあります。 S モードの詳細は「[Windows 10 (S モード) について](https://www.microsoft.com/windows/s-mode)」でご覧いただけます。 適用対象: 一番新しい [Windows Insider](https://docs.microsoft.com/windows-insider/at-work-pro/) ビルド (プレビュー段階)。 #### <a name="windows-defender-atp-configuration-package-automatically-added-to-configuration-profile----2144658---"></a>構成プロファイルに自動的に追加される Windows Defender ATP 構成パッケージ <!-- 2144658 --> Intune で [Advanced Threat Protection を使用してデバイスをオンボードする](advanced-threat-protection.md#onboard-devices-using-a-configuration-profile)場合、前もって構成パッケージをダウンロードし、それを構成プロファイルに追加する必要があります。 この更新では、Intune で Windows Defender Security Center からパッケージを自動的に取得し、それをプロファイルに追加します。 Windows 10 以降に適用されます。 #### <a name="require-users-to-connect-during-device-setup---2311457--"></a>デバイスのセットアップ中に接続するためのユーザーが必要 <!--2311457--> Windows 10 のセットアップ中にネットワーク ページから進む前に、デバイスがネットワークに接続することを要求するように、デバイス プロファイルを設定できるようになりました。 この機能はプレビュー中ですが、Windows Insider ビルド 1809 以降ではこの設定を使用する必要があります。 適用対象: 一番新しい [Windows Insider](https://docs.microsoft.com/windows-insider/at-work-pro/) ビルド (プレビュー段階)。 #### <a name="restricts-apps-and-block-access-to-company-resources-on-ios-and-android-enterprise-devices----2451462---"></a>iOS デバイスと Android エンタープライズ デバイスでアプリを制限し、会社のリソースへのアクセスをブロックする <!-- 2451462 --> **[デバイスのポリシー準拠]** > **[ポリシー]** > **[ポリシーの作成]** > **[iOS]** > **[システム セキュリティ]** の順に選択したところに、**制限付きアプリケーション**の新しい設定があります。 この新しい設定ではコンプライアンス ポリシーが使用され、特定のアプリがデバイスにインストールされている場合、会社のリソースへのアクセスがブロックされます。 制限付きアプリケーションがデバイスから削除されるまで、デバイスは非準拠と見なされます。 適用対象: iOS #### <a name="modern-vpn-support-updates-for-ios----2459928-1819876-and-2650856---"></a>最新の VPN サポートの更新で iOS に対応 <!-- 2459928, 1819876, and 2650856 --> この更新では、次の iOS VPN クライアントがサポート対象になります。 - F5 Access (バージョン 3.0.1 以降) - Citrix SSO - Palo Alto Networks GlobalProtect バージョン 5.0 以降。この更新では以下もサポートされます。 - 既存の **F5 Access** の接続の種類は、iOS 用の **F5 Access Legacy** という名前に変更されました。 - 既存の **Palo Alto Networks GlobalProtect** の接続の種類の名前は、iOS 用の **Palo Alto Networks GlobalProtect (Legacy)** に変更されます。 これらの接続の種類を持つ既存のプロファイルは、引き続きそれぞれのレガシ VPN クライアントで動作します。 Cisco Legacy AnyConnect、F5 Access Legacy、Citrix VPN、または Palo Alto Networks GlobalProtect バージョン 4.1 以前を iOS で使用している場合、新しいアプリに移ってください。 iOS 12 に更新されたときに iOS デバイスで VPN アクセスを利用できるように、できるだけ速やかに移ってください。 iOS 12 と VPN プロファイルの詳細については、[Microsoft Intune サポート チームのブログ](https://go.microsoft.com/fwlink/?linkid=2013806)に関するページを参照してください。 #### <a name="export-azure-classic-portal-compliance-policies-to-recreate-these-policies-in-the-intune-azure-portal----2469637---"></a>Azure クラシック ポータルのコンプライアンス ポリシーをエクスポートして、Intune Azure portal でこれらのポリシーを再作成する <!-- 2469637 --> Azure クラシック ポータルで作成されたコンプライアンス ポリシーは非推奨になる予定です。 既存のコンプライアンス ポリシーは確認したり、削除したりできますが、更新することはできません。 現在の Intune Azure portal に任意のコンプライアンス ポリシーを移行する必要がある場合は、コンマ区切りファイル (*.csv* ファイル) としてポリシーをエクスポートできます。 その後、ファイルの詳細を使って、Intune Azure portal でこれらのポリシーを再作成します。 > [!IMPORTANT] > Azure クラシック ポータルが廃止されると、ご自分のコンプライアンス ポリシーにアクセスしたり、表示したりすることはできなくなります。 そのため、Azure クラシック ポータルが廃止される前に、必ずご利用のポリシーをエクスポートし、Azure portal で再作成してください。 #### <a name="better-mobile---new-mobile-threat-defense-partner----22662717---"></a>Better Mobile - 新しい Mobile Threat Defense パートナー <!-- 22662717 --> Microsoft Intune に統合された Mobile Threat Defense ソリューションである Better Mobile によって実行されるリスク評価に基づき、条件付きアクセスを利用し、モバイル デバイスから会社のリソースへのアクセスを制御できます。 ### <a name="device-enrollment"></a>デバイスの登録 #### <a name="lock-the-company-portal-in-single-app-mode-until-user-sign-in---1067692---"></a>ユーザーがサインインするまで、シングル アプリ モードでポータル サイトをロックする <!--1067692 --> DEP 登録中、セットアップ アシスタントの代わりに、ポータル サイトを介してユーザーを認証する場合、シングル アプリ モードでポータル サイトを実行するオプションを使用できるようになりました。 このオプションによってセットアップ アシスタントの完了直後にデバイスがロックされます。そのため、デバイスを利用するには、ユーザーはサインインする必要があります。 このプロセスにより、デバイスはオンボードを完了し、ユーザーが関連付けられていない状態で孤立することはありません。 #### <a name="assign-a-user-and-friendly-name-to-an-autopilot-device---1346521---"></a>Autopilot デバイスにユーザーとわかりやすい名前を割り当てる <!--1346521 --> [ユーザーを 1 つの Autopilot デバイスに割り当てる](enrollment-autopilot.md)ことができるようになりました。 管理者はまた、AutoPilot でデバイスを設定するユーザーにとってわかりやすい名前を与えることができます。 適用対象: 一番新しい [Windows Insider](https://docs.microsoft.com/windows-insider/at-work-pro/) ビルド (プレビュー段階)。 #### <a name="use-vpp-device-licenses-to-pre-provision-the-company-portal-during-dep-enrollment----1608345---"></a>VPP デバイス ライセンスを使用して DEP 登録時にポータル サイトを事前プロビジョニングする <!-- 1608345 --> Volume Purchase Program (VPP) デバイス ライセンスを使用して、Device Enrollment Program (DEP) 登録時にポータル サイトを事前プロビジョニングすることができます。 そのためには、[登録プロファイルを作成または編集する](device-enrollment-program-enroll-ios.md#create-an-apple-enrollment-profile)ときに、ポータル サイトをインストールするために使用する VPP トークンを指定します。 トークンの期限が切れていないことと、ポータル サイト アプリの十分なライセンスがあることを確認してください。 トークンの期限が切れているか、ライセンスが不足している場合、Intune は代わりに App Store ポータル サイトをプッシュします (この場合、Apple ID の入力が求められます)。 #### <a name="confirmation-required-to-delete-vpp-token-that-is-being-used-for-company-portal-pre-provisioning----2237634---"></a>ポータル サイトの事前プロビジョニングに使用されている VPP トークンを削除するために必要な構成 <!-- 2237634 --> DEP 登録時にポータル サイトの事前プロビジョニングに Volume Purchase Program (VPP) トークンが使用されている場合、そのトークンを削除するための構成が必要になりました。 #### <a name="block-windows-personal-device-enrollments----1849498---"></a>Windows 個人デバイス登録を禁止する <!-- 1849498 --> Intune の[モバイル デバイス管理](windows-enroll.md)で [Windows 個人デバイスの登録を禁止](enrollment-restrictions-set.md#set-device-type-restrictions)できます。 [Intune PC エージェント](manage-windows-pcs-with-microsoft-intune.md)で登録されているデバイスはこの機能でブロックできません。 この機能は次の数週間でロールアウトされます。そのため、ユーザー インターフェイスにはすぐに表示されないことがあります。 #### <a name="specify-machine-name-patterns-in-an-autopilot-profile---1849855--"></a>Autopilot プロファイルにコンピューター名パターンを指定する <!--1849855--> Autopilot の登録時に、生成する[コンピューター名テンプレートを指定](enrollment-autopilot.md#create-an-autopilot-deployment-profile)したり、[コンピューター名](https://docs.microsoft.com/windows/client-management/mdm/accounts-csp)を設定したりできます。 適用対象: 一番新しい [Windows Insider](https://docs.microsoft.com/windows-insider/at-work-pro/) ビルド (プレビュー段階)。 #### <a name="for-windows-autopilot-profiles-hide-the-change-account-options-on-the-company-sign-in-page-and-domain-error-page---1901669---"></a>Windows Autopilot プロファイルの場合、会社のサインイン ページとドメイン エラー ページでアカウント変更オプションを非表示にする <!--1901669 --> 会社のサインイン ページとドメイン エラー ページでアカウント変更オプションを管理者が非表示にするための[新しい Windows Autopilot プロファイル オプション](enrollment-autopilot.md#create-an-autopilot-deployment-profile)があります。 これらのオプションを非表示にするには、Azure Active Directory で会社のブランドを構成する必要があります。 適用対象: 一番新しい [Windows Insider](https://docs.microsoft.com/windows-insider/at-work-pro/) ビルド (プレビュー段階)。 ### <a name="macos-support-for-apple-device-enrollment-program----747651---"></a>Apple Device Enrollment Program の macOS によるサポート <!-- 747651 --> Intune は、Apple Device Enrollment Program (DEP) への macOS デバイスの登録をサポートするようになりました。 詳細については、「[Apple の Device Enrollment Program を使用して macOS デバイスを自動登録する](device-enrollment-program-enroll-macos.md)」を参照してください。 ### <a name="device-management"></a>デバイス管理 #### <a name="delete-jamf-devices----2653306--"></a>Jamf デバイスを削除する <!-- 2653306--> **[デバイス]** に移動し、Jamf デバイスを選択して、**[削除]** を選択することにより、Jamf で管理されたデバイスを削除できます。 #### <a name="change-terminology-to-retire-and-wipe----2175759---"></a>"削除" と "ワイプ" への用語変更 <!-- 2175759 --> Graph API との一貫性を保つために、Intune のユーザー インターフェイスとドキュメントにおいて次の用語が変更されています。 - **[会社データの削除]** は、"廃止" に変更されます - **[出荷時の設定にリセット]** は **[ワイプ]** に変更されます #### <a name="confirmation-dialog-if-admin-tries-to-delete-mdm-push-certificate----297909500--"></a>管理者が MDM プッシュ通知証明書を削除しようとする場合の確認ダイアログ <!-- 297909500--> 任意のユーザーが Apple MDM プッシュ通知証明書を削除しようとすると、確認ダイアログ ボックスには関連する iOS と macOS デバイスの数が表示されます。 証明書が削除された場合、これらのデバイスは再登録される必要があります。 #### <a name="additional-security-settings-for-windows-installer----2282430---"></a>Windows インストーラーの追加のセキュリティ設定 <!-- 2282430 --> ユーザーがアプリのインストールを制御することを許可できます。 有効にすると、セキュリティ違反が原因で本来は停止される可能性があるインストールを続行することが許可されます。 Windows インストーラーによってシステムに任意のプログラムをインストールする場合、管理者特権のアクセス許可を使用するよう Windows インストーラーに指示することができます。 さらに、Windows 情報保護 (WIP) アイテムのインデックス付け、および暗号化されていない場所に格納されたそれらのアイテムに関するメタデータを有効にすることができます。 このポリシーが無効な場合、WIP で保護されたアイテムにはインデックスが付けられず、Cortana またはエクスプローラーの結果に表示されません。 既定では、これらのオプションの機能は無効になっています。 #### <a name="new-user-experience-update-for-the-company-portal-website---2000968---"></a>Intune ポータル サイトの新しいユーザー エクスペリエンスの更新 <!--2000968 --> 顧客からのフィードバックに基づいて、Intune ポータル サイト Web サイトに新機能を追加しています。 ご利用のデバイスから、既存の機能と使いやすさの大幅な向上を体験できます。 &ndash;デバイス詳細、フィードバックとサポート、デバイス概要など&ndash;のサイトの領域には、最新の応答性の高いデザインが採用されています。 また、次のような更新が行われています。 - すべてのデバイス プラットフォームでの簡素化されたワークフロー - 強化されたデバイスの識別と登録のフロー - 役に立つエラー メッセージ - 技術的な専門用語を減らした、わかりやすい言語 - アプリへの直接リンクを共有する機能 - 大規模なアプリケーション カタログのパフォーマンスの向上 - すべてのユーザーに対するアクセシビリティの向上 [Intune ポータル サイト Web サイトのドキュメント](https://docs.microsoft.com/intune-user-help/using-the-intune-company-portal-website)は、これらの変更を反映するように更新されています。 アプリの拡張機能の例を表示するには、「[Intune とエンド ユーザー アプリの UI の更新](whats-new-app-ui.md)」を参照してください。 ### <a name="monitor-and-troubleshoot"></a>監視とトラブルシューティング #### <a name="enhanced-jailbreak-detection-in-compliance-reporting---2198738---"></a>コンプライアンス レポートでの脱獄の高度な検出<!-- 2198738 --> 脱獄の高度な検出の設定の状態は、管理コンソール内のすべてのコンプライアンス レポートに表示されるようになりました。 ### <a name="role-based-access-control"></a>ロールベースのアクセス制御 #### <a name="scope-tags-for-policies---1081974---"></a>ポリシーのスコープ タグ <!--1081974 --> Intune リソースへのアクセスを制限するために、[スコープのタグを作成](scope-tags.md)できます。 スコープ タグをロールの割り当てに追加し、同じスコープ タグを構成プロファイルに追加します。 そのロールでは、スコープ タグが一致する (あるいはスコープ タグがない) 構成プロファイルを持つリソースにのみアクセスできます。 <!-- ########################## --> ## <a name="july-2018"></a>2018 年 7 月 ### <a name="app-management"></a>アプリ管理 #### <a name="line-of-business-lob-app-support-for-macos----1895847---"></a>macOS の基幹業務 (LOB) アプリのサポート <!-- 1895847 --> Microsoft Intune では、macOS LOB アプリを **[必須]** として、または **[Available with enrollment]\(登録して利用可能\)** として展開することができます。 エンド ユーザーは、macOS 用のポータル サイトまたは[ポータル サイト Web サイト](https://portal.manage.microsoft.com)を使用して、アプリを **[利用可能]** として展開してもらうことができます。 #### <a name="ios-built-in-app-support-for-kiosk-mode----2051098---"></a>キオスク モードに対応する iOS 組み込みアプリのサポート <!-- 2051098 --> ストア アプリおよび管理対象アプリに加えて、iOS デバイス上でキオスク モードで実行される組み込みアプリ (Safari など) を選択できるようになりました。 #### <a name="edit-your-office-365-pro-plus-app-deployments----2150145---"></a>Office 365 Pro Plus アプリの展開を編集する <!-- 2150145 --> Microsoft Intune 管理者は、Office 365 Pro Plus アプリのデプロイを編集するための強化された機能を使用できます。 さらに、スイートのいずれかのプロパティを変更するのに、デプロイを削除しなくてもよくなりました。 Azure portal で、**[Microsoft Intune]** > **[クライアント アプリ]** > **[アプリ]** の順に選択します。 アプリの一覧から、Office 365 Pro Plus スイートを選択します。 #### <a name="updated-intune-app-sdk-for-android-is-now-available----2744271--"></a>更新された Android 用の Intune App SDK が利用可能になった <!-- 2744271--> Android P のリリースをサポートする Android 用 Intune アプリ SDK の更新バージョンが使用可能になりました。 Android 用 Intune SDK を使用しているアプリ開発者は、Intune アプリ SDK の更新バージョンをインストールして、Android P デバイス上でも Android アプリの Intune 機能が正常に動作するようにする必要があります。 このバージョンの Intune アプリ SDK には、SDK の更新を実行する組み込みのプラグインが用意されています。 統合されている既存のコードを書き直す必要はありません。 詳細については、[Android 用 Intune SDK](https://github.com/msintuneappsdk/ms-intune-app-sdk-android) に関するページをご覧ください。 Intune に対して古いバッジのスタイルを使用している場合は、ブリーフケース アイコンを使用することをお勧めします。 ブランド化について詳しくは、[この GitHub リポジトリ](https://github.com/msintuneappsdk/intune-app-partner-badge)をご覧ください。 #### <a name="more-opportunities-to-sync-in-the-company-portal-app-for-windows"></a>Windows 用ポータル サイト アプリ内での同期の機会の増加 Windows 用ポータル サイト アプリでは、Windows タスク バーと [スタート] メニューから直接同期を開始できるようになりました。 この機能は、唯一のタスクがデバイスを同期して、企業リソースへのアクセスを取得することで場合に特に便利です。 この新しい機能にアクセスするには、ご利用のタスク バーまたは [スタート] メニューに固定されているポータル サイト アイコンを右クリックします。 メニュー オプション (ジャンプ リストとも呼ばれる) で、**[Sync this device]\(このデバイスを同期\)** を選択します。 ポータル サイトが開いて、**[設定]** ページが表示され、同期が開始されます。新しい機能については、[UI の新機能](whats-new-app-ui.md)に関するページを参照してください。 #### <a name="new-browsing-experiences-in-the-company-portal-app-for-windows"></a>Windows 用ポータル サイト アプリでの新しい参照エクスペリエンス Windows 用ポータル サイト アプリでアプリを参照または検索するときに、既存の **[タイル]** ビューと新しく追加された **[詳細]** ビューを切り替えることができるようになりました。 新しいビューには、名前、発行元、発行日、インストール状態などのアプリケーションの詳細が一覧表示されます。 **[アプリ]** ページの **[インストール済み]** ビューでは、完了済みと進行中のアプリのインストールに関する詳細を確認できます。 新しいビューの外観を確認するには、[UI の新機能](whats-new-app-ui.md)を参照してください。 #### <a name="improved-company-portal-app-experience-for-device-enrollment-managers"></a>デバイス登録マネージャー向けのポータル サイト アプリの操作性の改善 デバイス登録マネージャー (DEM) が Windows 用ポータル サイト アプリにサインインすると、アプリには DEM の現在 (実行中のデバイス) のみが一覧表示されるようになります。 この改善により、DEM に登録されたデバイスをすべて表示しようとしたときに以前に発生していたタイムアウトが削減されます。 #### <a name="block-app-access-based-on-unapproved-device-vendors-and-models-----1425689----"></a>未承認のデバイス ベンダーとモデルに基づくアプリのアクセスのブロック <!-- 1425689 ! --> Intune の IT 管理者は、Intune App Protection ポリシーによって、Android 製造元や iOS モデルの指定された一覧を適用できます。 IT 管理者は、Android ポリシーの製造元と iOS ポリシーのデバイス モデルのセミコロン区切り一覧を提供できます。 Intune App Protection ポリシーは、Android および iOS 専用です。 この指定されたリストでは 2 つの個別操作を実行できます。 - 指定されていないデバイスでのアプリ アクセスからブロック。 - または、指定されていないデバイスでの企業データの選択的ワイプ。 ユーザーは、ポリシーによる要件が満たされない場合、対象となるアプリケーションにアクセスすることができません。 設定に基づいて、ユーザーは、ブロックされるか、アプリ内の企業データを選択的にワイプされます。 iOS デバイス上でこの機能を利用するには、対象のアプリケーションに適用するこの機能の Intune アプリ SDK を統合するアプリケーション (WXP、Outlook、Managed Browser、Yammer など) の参加が必要となります。 この統合は、ローリング方式で行われ、特定のアプリケーション チームによって異なります。 Android でこの機能を利用するには、最新の Intune ポータル サイトが必要です。 エンド ユーザー デバイスの Intune クライアントは、アプリケーション保護ポリシーに対して Intune ブレードで指定されている文字列の単純一致に基づいてアクションを実行します。 これは、デバイスを報告する値に完全に依存します。 そのため、IT 管理者には、意図した動作が正確であることを確認することをお勧めします。 これは、小さなユーザー グループを対象に、さまざまなデバイス製造元とモデルに基づいてこの設定をテストすることによって実現できます。 Microsoft Intune で、アプリ保護ポリシーを表示および追加するには、**[クライアント アプリ]** > **[アプリ保護ポリシー]** の順に選択します。 アプリ保護ポリシーの詳細については、「[アプリ保護ポリシーとは](app-protection-policy.md)」および「[Intune でアプリ保護ポリシーのアクセス アクションを利用し、データを選択的にワイプする](app-protection-policies-access-actions.md)」を参照してください。 #### <a name="access-to-macos-company-portal-pre-release-build----1734766---"></a>macOS ポータル サイトのプレリリース ビルドへのアクセス <!-- 1734766 --> Microsoft AutoUpdate を使用すれば、Insider Program に参加することにより、早期にビルドを受け取るためにサインアップできます。 サインアップすると、エンド ユーザーが使用できるようになる前に更新されたポータル サイトを使用できます。 詳細については、[Microsoft Intune に関するブログ](https://blogs.technet.microsoft.com/intunesupport/2018/07/13/use-microsoft-autoupdate-for-early-access-to-the-macos-company-portal-app/) を参照してください。 ### <a name="device-configuration"></a>デバイス構成 #### <a name="create-device-compliance-policy-using-firewall-settings-on-macos-devices----1497640---"></a>macOS デバイスでファイアウォール設定を使ってデバイスのコンプライアンス ポリシーを作成する <!-- 1497640 --> macOS の新しいコンプライアンス ポリシーを作成するとき (**[デバイスのポリシー準拠]** > **[ポリシー]** > **[ポリシーの作成]** > **[プラットフォーム: macOS]** > **[システム セキュリティ]**)、**ファイアウォール**に関するいくつかの新しい設定を使用できます。 - **[ファイアウォール]**: ご利用の環境における着信接続の処理方法を構成します。 - **[着信接続]**: DHCP、Bonjour、IPSec など、基本的なインターネット サービスに必要な接続を除き、すべての着信接続を **[ブロック]** します。 この設定は、すべての共有サービスもブロックします。 - **[ステルス モード]**: ステルス モードを **[有効]** にして、デバイスがプローブ要求に応答するのを防ぎます。 デバイスは引き続き、許可されているアプリに関する着信要求に応答します。 適用対象: macOS 10.12 以降 #### <a name="new-wi-fi-device-configuration-profile-for-windows-10-and-later----1879077---"></a>Windows 10 以降用の新しい Wi-Fi デバイス構成プロファイル <!-- 1879077 --> 現時点では、XML ファイルを使用して、Wi-Fi プロファイルをインポートおよびエクスポートすることができます。 この更新プログラムを使用すると、他のプラットフォームの場合と同じように、Intune で直接 Wi-Fi デバイス構成プロファイルを作成できるようになります。 プロファイルを作成するには、**[デバイス構成]** > **[プロファイル]** > **[プロファイルの作成]** > **[Windows 10 以降]** > **[Wi-Fi]** の順に開きます。 Windows 10 以降に適用されます。 #### <a name="kiosk---obsolete-is-grayed-out-and-cant-be-changed----2149998---"></a>[Kiosk - obsolete]\(キオスク - 古い) が灰色で表示され、変更できない <!-- 2149998 --> キオスク (プレビュー) の機能 (**[デバイス構成]** > **[プロファイル]** > **[プロファイルの作成]** > **[Windows 10 以降]** > **[デバイスの制限]**) は使用されなくなり、[Windows 10 以降用のキオスク設定](kiosk-settings.md)に置き換えられます。 この更新プログラムを使用すると、**[Kiosk - Obsolete]\(キオスク - 古い)** 機能は灰色で表示され、ユーザー インターフェイスの変更や更新はできません。 キオスク モードを有効にする場合は、[Windows 10 以降用のキオスクの設定](kiosk-settings.md)に関するページを参照してください。 Windows 10 以降、Windows Holographic for Business に適用されます #### <a name="apis-to-use-3rd-party-certification-authorities----2184013---"></a>サード パーティ証明機関を使用する API <!-- 2184013 --> この更新プログラムでは、Java API でサード パーティ証明機関を使用して、Intune と SCEP を統合できるようになります。 その後、ユーザーは SCEP 証明書をプロファイルに追加し、MDM を使用してデバイスに適用できます。 現時点では、Intune で [Active Directory 証明書サービスを使用する SCEP 要求](certificates-scep-configure.md)がサポートされています。 #### <a name="toggle-to-show-or-not-show-the-end-session-button-on-a-kiosk-browser----2455253---"></a>キオスク ブラウザーで [セッションの終了] ボタンの表示と非表示を切り替える <!-- 2455253 --> キオスク ブラウザーに [セッションの終了] ボタンを表示するかどうかを構成できるようになりました。 コントロールは **[デバイス構成]** > **[キオスク (プレビュー)]** > **[キオスク Web ブラウザー]** で表示できます。 有効にした場合、ユーザーがボタンをクリックしたときに、アプリでセッションを終了するための構成が求められます。 確認すると、ブラウザーで閲覧データがすべてクリアされ、既定の URL に戻ります。 #### <a name="create-an-esim-cellular-configuration-profile----2564077---"></a>eSIM 携帯電話の構成プロファイルの作成 <!-- 2564077 --> **[デバイス構成]** では、eSIM 携帯電話のプロファイルを作成することができます。 携帯電話会社によって提供される携帯電話のアクティブ化コードを含むファイルをインポートできます。 その後、これらのプロファイルを、Surface Pro LTE やその他の eSIM 対応デバイスなど、eSIM LTE を有効にした Windows 10 デバイスに展開することができます。 ご利用の[デバイスで eSIM プロファイルがサポートされている](https://support.microsoft.com/help/4020763/windows-10-use-esim-for-cellular-data)かどうかを確認してください。 Windows 10 以降に適用されます。 #### <a name="select-device-categories-by-using-the-access-work-or-school-settings----1058963-eenotready---"></a>[職場または学校にアクセスする] 設定を使用したデバイス カテゴリの選択 <!-- 1058963 eenotready --> [デバイス グループ マッピング](https://docs.microsoft.com/intune/device-group-mapping)を有効にした場合、**[設定]** > **[アカウント]** > **[職場または学校にアクセスする]** の **[接続]** から登録後、または Windows 10 のユーザーはデバイス カテゴリの選択を求められるようになります。 #### <a name="use-samaccountname-as-the-account-username-for-email-profiles----1500307---"></a>電子メール プロファイルのアカウント ユーザー名として sAMAccountName を使用する <!-- 1500307 --> Android、iOS、および Windows 10 用の電子メール プロファイルのアカウント ユーザー名として、オンプレミスの **sAMAccountName** を使うことができます。 また、Azure Active Directory (Azure AD) の `domain` または `ntdomain` 属性から、ドメインを取得できます。 または、カスタムの静的ドメインを入力します。 この機能を使うには、オンプレミスの Active Directory 環境から Azure AD に `sAMAccountName` 属性を同期する必要があります。 適用対象: [Android](email-settings-android.md)、[iOS](email-settings-ios.md)、[Windows 10 以降](email-settings-windows-10.md) #### <a name="see-device-configuration-profiles-in-conflict----1556983---"></a>競合しているデバイス構成プロファイルの確認 <!-- 1556983 --> **[デバイス構成]** には、既存のプロファイルのリストが表示されます。 今回の更新プログラムでは、競合しているプロファイルに関する詳細を示す新しい列が追加されます。 競合する行を選択することで、競合しているプロファイルと設定を確認できます。 詳細については、[構成プロファイルの管理](device-profile-monitor.md#view-conflicts)に関するページを参照してください。 #### <a name="new-status-for-devices-in-device-compliance----2308882---"></a>デバイスのポリシー準拠でのデバイスの新しい状態 <!-- 2308882 --> **[デバイスのポリシー準拠]** > **[ポリシー]**、該当するポリシー、**[概要]** の順に選択すると、次の新しい状態が追加されます。 - 成功 - エラー - 競合 - 保留中 - 適用不可。異なるプラットフォームのデバイス数を示すイメージも表示されます。 たとえば、iOS プロファイルを見ている場合、新しいタイルでは、そのプロファイルに割り当てられている iOS 以外のデバイスの数も示されます。 [デバイス コンプライアンス ポリシー](compliance-policy-monitor.md#view-status-of-device-policies)に関するポリシーを参照してください。 #### <a name="device-compliance-supports-3rd-party-anti-virus-solutions----2325484---"></a>デバイスのコンプライアンスはサード パーティのウイルス対策ソリューションをサポートする <!-- 2325484 --> デバイス コンプライアンス ポリシーを作成するとき (**[デバイスのポリシー準拠]** > **[ポリシー]** > **[ポリシーの作成]** > **[プラットフォーム: Windows 10 以降]** > **[設定]** > **[システム セキュリティ]**)、新しい **[[デバイスのセキュリティ]](compliance-policy-create-windows.md#windows-10-and-later-policy-settings)** オプションがあります。 - **[ウイルス対策]**: **[必要]** に設定すると、Windows Security Center に登録されている Symantec や Windows Defender などのウイルス対策ソリューションを使って、コンプライアンスを確認できます。 - **[スパイウェア対策]**: **[必要]** に設定すると、Windows Security Center に登録されている Symantec や Windows Defender などのスパイウェア対策ソリューションを使って、コンプライアンスを確認できます。 適用対象: Windows 10 以降 ### <a name="device-enrollment"></a>デバイスの登録 #### <a name="automatically-mark-android-devices-enrolled-by-using-samsung-knox-mobile-enrollment-as-corporate----2404851---"></a>Samsung Knox Mobile Enrollment を使用して登録された Android デバイスを自動的に "企業" としてマークする。 <!-- 2404851 --> 既定で、Samsung Knox Mobile Enrollment を使用して登録された Android デバイスは、**[デバイスの所有権]** に**企業**としてマークされるようになりました。 Knox Mobile Enrollment を使用して登録する前に、IMEI やシリアル番号を使って企業のデバイスを手動で特定する必要はありません。 #### <a name="devices-without-profiles-column-in-the-list-of-enrollment-program-tokens----1853904---"></a>登録プログラム トークンのリスト内にあるプロファイルを持たないデバイスを示す列 <!-- 1853904 --> 登録プログラムのトークン リストには、プロファイルが割り当てられていないデバイスの数を示す新しい列があります。 この列は、管理者が、そのようなデバイスをユーザーに渡す前に、プロファイルを割り当てるのに役立ちます。 新しい列を参照するには、**[デバイスの登録]** > **[Apple の登録]** > **[Enrollment Program トークン]** の順に選択します。 ### <a name="device-management"></a>デバイス管理 #### <a name="bulk-delete-devices-on-devices-blade----1793693---"></a>デバイス ブレードでのデバイスの一括削除 <!-- 1793693 --> [デバイス] ブレードでは、一度に複数のデバイスを削除できるようになりました。 **[デバイス]** > **[すべてのデバイス]**、削除するデバイス、**[削除]** の順に選択します。 削除できないデバイスについては、アラートが表示されます。 #### <a name="google-name-changes-for-android-for-work-and-play-for-work---842873---"></a>Android for Work および Play for Work の Google 名の変更 <!--842873 --> Intune では、Google ブランドの変更を反映するように "Android for Work" の用語が更新されました。 "Android for Work" および "Play for Work" という用語は使われなくなりました。 コンテキストに応じて異なる用語が使われます。 - "Android エンタープライズ" は、最新の Android 管理スタック全体を指します。 - "Work profile" または "Profile Owner" は、作業プロファイルで管理されている BYOD デバイスを指します。 - "Managed Google Play" は、Google アプリ ストアを指します。 #### <a name="rules-for-removing-devices----1609459---"></a>デバイス削除のルール <!-- 1609459 --> 設定した日数の間チェックインしていないデバイスを自動的に削除する新しいルールを使用できます。 新しいルールを表示するには、**[Intune]** ウィンドウ、**[デバイス]**、**[デバイスのクリーンアップ ルール]** の順に選択します。 #### <a name="corporate-owned-single-use-support-for-android-devices----1630973---"></a>Android デバイスの会社所有、単一使用のサポート <!-- 1630973 --> Intune は、高度に管理されてロック ダウンされた、キオスク スタイルの Android デバイスをサポートするようになりました。 これにより、管理者は、デバイスの使用を 1 つのアプリまたはアプリの小さなセットにさらにロックダウンし、ユーザーが他のアプリを有効にしたり、デバイスで他の操作を実行したりすることを禁止できます。 Android キオスクを設定するには、Intune > **[デバイスの登録]** > **[Android の登録]** > **[Kiosk and task device enrollments]\(キオスクおよびタスク デバイス登録\)** の順に進みます。 詳細については、[Android エンタープライズ キオスク デバイスの登録の設定](android-kiosk-enroll.md)に関するページを参照してください。 #### <a name="per-row-review-of-duplicate-corporate-device-identifiers-uploaded----2203794--"></a>アップロードされた重複する業務用デバイス ID の行ごとのレビュー <!-- 2203794--> 業務用 ID をアップロードすると、重複の一覧が提供され、既存の情報を置き換えるか、保持することができるようになりました。 **[デバイスの登録]** > **[業務用デバイスの ID]** > **[ID の追加]** を選ぶと、重複がある場合はレポートが表示されます。 #### <a name="manually-add-corporate-device-identifiers----2203803---"></a>業務用デバイスの ID を手動で追加する <!-- 2203803 --> 業務用デバイスの ID を手動で追加できるようになりました。 **[デバイスの登録]** > **[業務用デバイスの ID]** > **[追加]** の順に選びます。 <!-- ########################## --> ## <a name="june-2018"></a>2018 年 6 月 ### <a name="app-management"></a>アプリ管理 #### <a name="microsoft-edge-mobile-support-for-intune-app-protection-policies----1817882---"></a>Microsoft Edge モバイルでの Intune アプリ保護ポリシーのサポート <!-- 1817882 --> モバイル デバイス向けの Microsoft Edge ブラウザーで、Intune で定義されるアプリ保護ポリシーがサポートされるようになりました。 #### <a name="retrieve-the-associated-app-user-model-id-aumid-for-microsoft-store-for-business-apps-in-kiosk-mode----1560077----"></a>キオスク モードのビジネス向け Microsoft Store アプリの関連付けられたアプリ ユーザー モデル ID (AUMID) を取得する <!-- 1560077 ! --> Intune で、ビジネス向け Microsoft Store (WSfB) アプリのアプリ ユーザー モデル ID (AUMID) を取得して、キオスク プロファイルの構成を改善できるようになりました。 ビジネス向け Microsoft Store アプリについて詳しくは、「[ビジネス向け Microsoft Store からのアプリの管理](windows-store-for-business.md)」をご覧ください。 #### <a name="new-company-portal-branding-page----1916370---"></a>新しいポータル サイトのブランド化ページ <!-- 1916370 --> ポータル サイトのブランド化ページには、新しいレイアウト、メッセージ、ヒントがあります。 ### <a name="device-configuration"></a>デバイス構成 #### <a name="pradeo---new-mobile-threat-defense-partner----1169249---"></a>Pradeo - 新しい Mobile Threat Defense パートナー <!-- 1169249 --> Microsoft Intune に統合されたモバイル脅威保護ソリューションである Pradeo によって実行されるリスク評価に基づき、条件付きアクセスを利用し、モバイル デバイスから会社のリソースへのアクセスを制御できます。 #### <a name="use-fips-mode-with-the-ndes-certificate-connector----1333688---"></a>NDES 証明書コネクタで FIPS モードを使用する <!-- 1333688 --> Federal Information Processing Standard (FIPS) モードが有効な NDES 証明書コネクタをコンピューターにインストールすると、証明書の発行や無効化が期待どおりに動作しません。 この更新プログラムでは、NDES 証明書コネクタに FIPS のサポートが含まれています。 この更新プログラムには、次も含まれています。 - NDES 証明書コネクタには、Windows Server 2016 と Windows Server 2012 R2 に自動的に含まれる .NET 4.5 Framework が必要です。 これまでは、最小で .NET 3.5 Framework バージョンが必須でした。 - NDES 証明書コネクタには、TLS 1.2 のサポートが含まれています。 したがって、NDES 証明書コネクタがインストールされているサーバーが TLS 1.2 をサポートする場合、TLS 1.2 が使用されます。 サーバーが TLS 1.2 をサポートしない場合、TLS 1.1 が使用されます。 現在、デバイスとサーバー間の認証には、TLS 1.1 が使用されています。 詳細については、[SCEP 証明書の構成と使用](certificates-scep-configure.md)と、[PKCS 証明書の構成と使用](certficates-pfx-configure.md)に関するページを参照してください。 #### <a name="support-for-palo-alto-networks-globalprotect-vpn-profiles----1333680----"></a>Palo Alto Networks GlobalProtect VPN プロファイルのサポート <!-- 1333680 ! --> 今回の更新で、Intune での VPN プロファイルの VPN 接続の種類として、Palo Alto Networks GlobalProtect を選択できるようになりました (**[デバイス構成]** > **[プロファイル]** > **[プロファイルの作成]** > **[プロファイルの種類]** > **[VPN]**)。 このリリースでは、次のプラットフォームがサポートされます。 - iOS - Windows 10 #### <a name="additions-to-local-device-security-options-settings----1403702---"></a>ローカル デバイス セキュリティ オプションの設定への追加 <!-- 1403702 --> Windows 10 デバイスに対して追加のローカル デバイス セキュリティ オプションの設定を構成できるようになりました。 追加設定を利用できるのは、Microsoft ネットワーク クライアント、Microsoft ネットワーク サーバー、ネットワーク アクセスとセキュリティ、および対話型ログオンなどに関する部分です。 これらの設定は、Windows 10 デバイスの構成ポリシーを作成するときに、[Endpoint Protection] カテゴリに表示されます。 #### <a name="enable-kiosk-mode-on-windows-10-devices----1560072----"></a>Windows 10 デバイスでキオスク モードを有効にする <!-- 1560072 ! --> Windows 10 デバイスでは、構成プロファイルを作成して、キオスク モードを有効にすることができます (**[デバイス構成]** > **[プロファイル]** > **[プロファイルの作成]** > **[Windows 10]** > **[デバイスの制限]** > **[キオスク]**)。 この更新では、**[キオスク (プレビュー)]** の設定の名前が **[キオスク (古い)]** に変更されています。 **[キオスク (古い)]** は使用を推奨されませんが、7 月の更新までは機能し続けます。 **[キオスク (古い)]** は新しい **[キオスク]** プロファイルの種類に置き換えられ (**[プロファイルの作成]** > **[Windows 10]** > **[キオスク (プレビュー)]**)、Windows 10 RS4 以降でキオスクを構成する設定が含まれます。 Windows 10 以降に適用されます。 #### <a name="device-profile-graphical-user-chart-is-back----2160133---"></a>デバイス プロファイルのグラフィカル ユーザー グラフが戻った <!-- 2160133 --> デバイス プロファイルのグラフィカルなグラフに表示される数値カウントの向上で (**[デバイス構成]** > **[プロファイル]** > 既存のプロファイルを選択 > **[概要]**)、グラフィカルなユーザー グラフが一時的に削除されました。 この更新では、グラフィカル ユーザー グラフが元に戻り、Azure portal に表示されます。 ### <a name="device-enrollment"></a>デバイスの登録 #### <a name="support-for-windows-autopilot-enrollment-without-user-authentication----1165118---"></a>ユーザー認証なしの Windows Autopilot 登録のサポート <!-- 1165118 --> Intune では、ユーザー認証なしの Windows Autopilot 登録がサポートされるようになりました。 これは Windows Autopilot Deployment プロファイルの新しいオプションであり、"Autopilot Deployment モード" が "自己配置" に設定されます。 デバイスでは Windows 10 Insider プレビュー ビルド 17672 以降を実行しており、この種類の登録を正常に完了させるために TPM 2.0 チップがある必要があります。 ユーザー認証は不要であるため、このオプションを割り当てる必要があるのは、物理的に制御できるデバイスのみとなります。 #### <a name="new-languageregion-setting-when-configuring-oobe-for-autopilot----1821766---"></a>Autopilot の OOBE を構成するときの新しい言語/リージョンの設定 <!-- 1821766 --> Out of Box Experience (OOBE) の間に、Autopilot プロファイルの言語とリージョンを設定する、新しい構成設定を使用できます。 新しい設定を表示するには、**[デバイスの登録]** > **[Windows の登録]** > **[Deployment profiles]\(展開プロファイル\)** > **[プロファイルの作成]** > **[配置モード]** = **[Self-deploying]\(自己配置\)** > **[既定値が構成済み]** の順に選択します。 #### <a name="new-setting-for-configuring-device-keyboard----1821768---"></a>デバイス キーボードを構成するための新しい設定 <!-- 1821768 --> Out of Box Experience (OOBE) の間に、Autopilot プロファイルのキーボードを構成する新しい設定を使用できます。 新しい設定を表示するには、**[デバイスの登録]** > **[Windows の登録]** > **[Deployment profiles]\(展開プロファイル\)** > **[プロファイルの作成]** > **[配置モード]** = **[Self-deploying]\(自己配置\)** > **[既定値が構成済み]** の順に選択します。 #### <a name="autopilot-profiles-moving-to-group-targeting----1877935---"></a>Autopilot プロファイルの対象がグループに移動 <!-- 1877935 --> AutoPilot 展開プロファイルは AutoPilot デバイスを含む Azure AD のグループに割り当てることができます。 ### <a name="device-management"></a>デバイス管理 #### <a name="set-compliance-by-device-location----851881----"></a>デバイスの場所によるコンプライアンスの設定 <!-- 851881 ! --> 状況によっては、ネットワーク接続で定義される特定の場所に、企業リソースへのアクセスを制限することが必要な場合あります。 デバイスの IP アドレスに基づき、コンプライアンス ポリシーを作成できるようになりました (**[デバイスのポリシー準拠]** > **[場所]**)。 デバイスが IP 範囲外に移動した場合、デバイスは会社のリソースにアクセスできません。 適用対象: Android デバイス 6.0 以降 (ポータル サイト アプリ更新済み) #### <a name="prevent-consumer-apps-and-experiences-on-windows-10-enterprise-rs4-autopilot-devices---1621980---"></a>Windows 10 Enterprise RS4 Autopilot デバイスでのコンシューマー アプリおよびエクスペリエンスの禁止<!-- 1621980 --> Windows 10 Enterprise RS4 Autopilot デバイスへのコンシューマー アプリおよびエクスペリエンスのインストールを禁止することができます。 この機能を表示するには、**[Intune]** > **[デバイス構成]** > **[プロファイル]** > **[プロファイルの作成]** > **[プラットフォーム]** = **[Windows 10 or later]\(Windows 10 以降\)** > **[プロファイルの種類]** = **[デバイスの制限]** > **[構成]** > **[Windows スポットライト]** > **[コンシューマー向けの機能]** の順に移動します。 #### <a name="uninstall-the-latest-from-windows-10-software-updates----1732948---"></a>Windows 10 ソフトウェア更新プログラムの最新のものをアンインストールする <!-- 1732948 --> Windows 10 コンピューターで重大な問題が見つかった場合は、最新の機能更新プログラムまたは最新の品質更新プログラムをアンインストール (ロールバック) できます。 機能更新プログラムまたは品質更新プログラムをアンインストールできるのは、デバイスが存在するサービス チャネルの場合のみです。 アンインストールすると、Windows 10 コンピューター上の以前の更新プログラムを復元するためのポリシーがトリガーされます。 機能更新プログラムの場合、最新バージョンのアンインストールを適用できる期間を 2 日から 60 日間で制限できます。 ソフトウェア更新プログラムのアンインストール オプションを設定するには、Azure Portal 内の **[Microsoft Intune]** ブレードで **[ソフトウェア更新プログラム]** を選択します。 次に、**[ソフトウェア更新プログラム]** ブレードで **[Windows 10 更新プログラムのリング]** を選択します。 これで、**[概要]** セクションから **[アンインストール]** オプションを選択できます。 #### <a name="search-all-devices-for-imei-and-serial-number----1793685---"></a>すべてのデバイスで IMEI およびシリアル番号を検索する <!-- 1793685 --> [すべてのデバイス] ブレードで IMEI およびシリアル番号を検索できるようになりました (電子メール、UPN、デバイス名、管理名は引き続き使用できます)。 Intune で、**[デバイス]** > **[すべてのデバイス]** の順に選択し、検索ボックスに検索語句を入力します。 #### <a name="management-name-field-will-be-editable----1875989---"></a>管理名フィールドが編集可能になる <!-- 1875989 --> デバイスの **[プロパティ]** ブレードで、管理名フィールドを編集できるようになりました。 このフィールドを編集するには、**[デバイス]** > **[すべてのデバイス]** > デバイスを選択 > **[プロパティ]** の順に選びます。 管理名フィールドを使って、デバイスを一意に識別できます。 #### <a name="new-all-devices-filter-device-category----1878520---"></a>新しいすべてのデバイス フィルター: デバイスのカテゴリ <!-- 1878520 --> デバイスのカテゴリごとに **[すべてのデバイス]** リストをフィルター処理できるようになりました。 これを行うには、**[デバイス]** > **[すべてのデバイス]** > **[フィルター]** > **[デバイスのカテゴリ]** の順に選択します。 #### <a name="use-teamviewer-to-screen-share-ios-and-macos-devices----1985547---"></a>TeamViewer を使用して iOS デバイスと MacOS デバイスの画面を共有する <!-- 1985547 --> 管理者は [TeamViewer](device-profile-android-teamviewer.md) に接続し、iOS および macOS デバイスとの画面共有セッションを開始できるようになりました。 iPhone、iPad、macOS ユーザーは、他のデスクトップ デバイスまたはモバイル デバイスと画面をライブで共有できます。 #### <a name="multiple-exchange-connector-support----2070451---"></a>複数の Exchange Connector のサポート <!-- 2070451 --> テナントごとの Microsoft Intune Exchange Connector の数が 1 個だけという制限がなくなりました。 Intune で複数の Exchange Connector がサポートされ、複数のオンプレミス Exchange の組織で Intune の条件付きアクセスを設定できるようになりました。 Intune のオンプレミス Exchange Connector を使うと、デバイスが Intune に登録されているかどうか、およびデバイスが Intune のデバイス コンプライアンス ポリシーに準拠しているかどうかに基づいて、お使いのオンプレミスの Exchange メールボックスに対するデバイス アクセスを管理できます。 コネクタを設定するには、Azure Portal から Intune のオンプレミス Exchange Connector をダウンロードして、Exchange の組織内のサーバーにインストールします。 Microsoft Intune ダッシュ ボードで **[オンプレミス アクセス]** を選択し、**[セットアップ]** で **[Exchange ActiveSync のコネクタ]** を選択します。 Exchange のオンプレミス コネクタをダウンロードし、Exchange の組織内のサーバーにインストールします。 テナントごとに 1 個という Exchange Connector の制限がなくなったので、他に Exchange の組織がある場合は、他の各 Exchange の組織にも同じ手順でコネクタをダウンロードしてインストールできます。 #### <a name="new-device-hardware-detail-ccid----2156657---"></a>新しいデバイス ハードウェアの詳細: CCID <!-- 2156657 --> CCID (Chip Card Interface Device) 情報がデバイスごとに含まれるようになりました。 これを表示するには、**[デバイス]** > **[すべてのデバイス]** の順に選択します。次に、該当するデバイス、**[ハードウェア]** の順に選び、**[ネットワークの詳細]** の下を確認します。 #### <a name="assign-all-users-and-all-devices-as-scope-groups----2196803---"></a>スコープ グループとしてすべてのユーザーとすべてのデバイスを割り当てる <!-- 2196803 --> スコープ グループ内のすべてのユーザー、すべてのデバイス、およびすべてのユーザーとすべてのデバイスを割り当てられるようになりました。 これを行うには、**[Intune の役割]** > **[すべてのロール]** > **[Policy and profile manager]\(ポリシーとプロファイル マネージャー\)** > **[割り当て]** の順に選び、割り当てを選んで、**[スコープ (グループ)]** を選びます。 #### <a name="udid-information-now-included-for-ios-and-macos-devices----2219806---"></a>iOS および macOS デバイスの UDID 情報が含まれるようになりました <!-- 2219806 --> iOS および macOS デバイスの UDID (一意のデバイス識別子) を表示するには、**[デバイス]** > **[すべてのデバイス]** の順に選択します。次に、該当するデバイス、**[ハードウェア]** の順に選びます。 UDID は会社のデバイスでのみ利用できます (**[デバイス]** > **[すべてのデバイス]**、該当するデバイス、**[プロパティ]** > **[デバイスの所有権]** の順に選択して設定した場合)。 ### <a name="intune-apps"></a>Intune アプリ #### <a name="improved-troubleshooting-for-app-installation----928990---"></a>アプリのインストールのトラブルシューティングの向上 <!-- 928990 --> Microsoft Intune の MDM で管理されたデバイスでは、アプリのインストールが失敗することがあります。 アプリのインストールが失敗した場合、失敗の理由を理解したり、問題をトラブルシューティングするのが難しい場合があります。 アプリ トラブルシューティング機能のパブリック プレビューが提供されています。 各デバイスの下に **[管理対象アプリ]** という新しいノードがあります。 これには、Intune MDM 経由で配布されたアプリが表示されます。 ノード内では、アプリのインストール状態が一覧表示されます。 個々のアプリを選ぶと、その特定のアプリのトラブルシューティング ビューが表示されます。 トラブルシューティング ビューでは、アプリが作成、変更、ターゲット指定、デバイス配布されたときなど、アプリのエンド ツー エンドのライフサイクルが表示されます。 さらに、アプリのインストールが成功しなかった場合は、エラー コードとエラーの原因に関する便利なメッセージが表示されます。 #### <a name="intune-app-protection-policies-and-microsoft-edge----1818968---"></a>Intune アプリ保護ポリシーと Microsoft Edge <!-- 1818968 --> モバイル デバイス (iOS および Android) 向けの Microsoft Edge ブラウザーで、Microsoft Intune アプリ保護ポリシーがサポートされるようになりました。 Microsoft Edge アプリケーションで企業の Azure AD アカウントを使用してサインインした iOS および Android デバイスのユーザーは、Intune によって保護されます。 管理されている iOS デバイスでは、**[Require managed browser for web content]** \(Web コンテンツに管理されているブラウザーが必要\) ポリシーにより、ユーザーは Microsoft Edge でリンクを開くことができます。 <!-- ########################## --> ## <a name="may-2018"></a>2018 年 5 月 ### <a name="app-management"></a>アプリ管理 #### <a name="configuring-your-app-protection-policies----2144597-part-2---"></a>アプリ保護ポリシーの構成 <!-- 2144597 Part 2 --> Azure portal では、Intune App Protection サービス ブレードに移動する代わりに、Intune に移動するようになりました。 Intune 内のアプリ保護ポリシーのための場所は 1 つだけになりました。 すべてのアプリ保護ポリシーが Intune の**アプリ保護ポリシー**の **[モバイル アプリ]** ブレードに置かれていることに注意してください。 この統合は、クラウド管理の簡素化に役立ちます。 ただし、すべてのアプリ保護ポリシーが既に Intune にあり、以前に構成した任意のポリシーを変更することができます。 Intune アプリ ポリシー保護 (APP) および条件付きアクセス (CA) ポリシーは現在、**[条件付きアクセス]** の下にあります。[条件付きアクセス] は、**[Microsoft Intune]** ブレードの **[管理]** セクション、または **[Azure Active Directory]** ブレードの **[セキュリティ]** セクションにあります。 条件付きアクセス ポリシーの変更の詳細については、「[Azure Active Directory の条件付きアクセス](https://docs.microsoft.com/azure/active-directory/active-directory-conditional-access-azure-portal)」を参照してください。 詳細については、「[アプリ保護ポリシーとは](app-protection-policy.md)」を参照してください。 ### <a name="device-configuration"></a>デバイス構成 #### <a name="require-installation-of-policies-apps-certificate-and-network-profiles----1553555---"></a>ポリシー、アプリ、証明書、およびネットワーク プロファイルのインストールを必要にする <!-- 1553555 --> 管理者は、AutoPilot デバイスのプロビジョニングの間、Intune がポリシー、アプリ、証明書、ネットワーク プロファイルをインストールするまで、エンド ユーザーによる Windows 10 RS4 デスクトップへのアクセスをブロックすることができます。 詳細については、「[登録ステータス ページを設定する](windows-enrollment-status.md)」を参照してください。 ### <a name="device-enrollment"></a>デバイスの登録 #### <a name="samsung-knox-mobile-enrollment-support---1112863--"></a>Samsung Knox Mobile Enrollment のサポート <!--1112863--> Knox Mobile Enrollment (KME) で Intune を使用すると、企業が所有する多数の Android デバイスを登録できます。 WiFi または移動体通信ネットワークのユーザーは、初めてデバイスをオンにしたときに、ほんの数タップで登録できます。 Knox Deployment App を使うと、Bluetooth または NFC を使ってデバイスを登録することもできます。 詳しくは、「[Samsung の Knox Mobile Enrollment を使用して Android デバイスを自動的に登録する](android-samsung-knox-mobile-enroll.md)」をご覧ください。 ### <a name="monitor-and-troubleshoot"></a>監視とトラブルシューティング #### <a name="requesting-help-in-the-company-portal-for-windows-10----1874137---"></a>Windows 10 ポータル サイト でのヘルプの要求 <!-- 1874137 --> ユーザーが問題に関するヘルプを入手するワークフローを開始すると、Windows 10 用 Intune ポータル サイトは Microsoft に直接アプリのログを送信するようになります。 これにより、Microsoft に問題を送ってすばやくトラブルシューティングして解決できます。 <!-- ########################## --> ## <a name="april-2018"></a>2018 年 4 月 ### <a name="app-management"></a>アプリ管理 #### <a name="passcode-support-for-mam-pin-on-android---1438086---"></a>Android での MAM PIN のパスコードのサポート<!-- 1438086 --> Intune 管理者は、アプリケーション起動要件を設定して、数値の MAM PIN の代わりにパスコードを強制することができます。 構成した場合、ユーザーは、MAM 対応のアプリケーションにアクセスする前に、要求された時点で、パスコードを設定および使用する必要があります。 パスコードは、少なくとも 1 つの特殊文字または大文字/小文字アルファベットを含む数値 PIN と定義されます。 Intune によるパスコードのサポート方法は既存の数値 PIN と似ており、管理コンソールで最小の長さを設定したり、文字やシーケンスの繰り返しを許可したりできます。 この機能を利用するには、Android に最新バージョンの Intune ポータル サイトが必要です。 この機能は、iOS では既に利用できます。 #### <a name="line-of-business-lob-app-support-for-macos----1473977---"></a>macOS の基幹業務 (LOB) アプリのサポート <!-- 1473977 --> Microsoft Intune では、Azure Portal から macOS LOB アプリをインストールできます。 GitHub で利用可能なツールを使って前処理した macOS LOB アプリを、Intune に追加できます。 Azure portal で、**[Intune]** ブレードから **[クライアント アプリ]** を選択します。 **[クライアント アプリ]** ブレードで、**[アプリ]** > **[追加]** の順に選択します。 **[アプリの追加]** ブレードで、**[基幹業務アプリ]** を選択します。 #### <a name="built-in-all-users-and-all-devices-group-for-android-enterprise-work-profile-app-assignment----1813073---"></a>Android エンタープライズ仕事用プロファイルのアプリの割り当て用の、組み込みのすべてのユーザー グループとすべてのデバイス グループ <!-- 1813073 --> Android エンタープライズ仕事用プロファイルのアプリの割り当て用に、組み込みの **[すべてのユーザー]** グループと **[すべてのデバイス]** グループを利用できます。 詳細については、「[Microsoft Intune でのアプリ割り当ての組み込みと除外](apps-inc-exl-assignments.md)」を参照してください。 #### <a name="intune-will-reinstall-required-apps-that-are-uninstalled-by-users----1947010---"></a>ユーザーがアンインストールした必要なアプリは Intune によって再インストールされる <!-- 1947010 --> エンド ユーザーが必要なアプリをアンインストールした場合、Intune は 7 日間の再評価サイクルを待機するのではなく、24 時間以内に該当するアプリを自動的に再インストールします。 #### <a name="update-where-to-configure-your-app-protection-policies----2144597---"></a>アプリの保護ポリシーを構成する場所を更新 <!-- 2144597 --> Microsoft Intune サービス内の Azure Portal で、ユーザーが一時的に **[Intune App Protection]** サービス ブレードから **[モバイル アプリ]** ブレードにリダイレクトされます。 すべてのアプリ保護ポリシーが Intune のアプリ構成の **[モバイル アプリ]** ブレードに既に置かれていることに注意してください。 Intune App Protection に移動する代わりに、Intune に移動します。 2018 年 4 月にリダイレクトを停止し、**[Intune App Protection]** サービス ブレードを完全に削除する予定です。したがって、Intune 内のアプリ保護ポリシーのための場所は 1 つだけになります。 **ユーザーへの影響** この変更は、Intune スタンドアロンのお客様とハイブリッド (Intune と Configuration Manager) のお客様の両方に影響します。 この統合は、クラウド管理の簡素化に役立ちます。 **この変更に対して必要な準備** **[Intune アプリ保護]** サービス ブレードの代わりにお気に入りとして **Intune** に登録し、Intune の **[モバイル アプリ]** ブレードのアプリ保護ポリシーのワークフローを習熟してください。 リダイレクトを短期間行い、その後 **[アプリ保護]** ブレードを削除します。 ただし、すべてのアプリ保護ポリシーが既に Intune にあり、任意の条件付きアクセス ポリシーを変更することができます。 条件付きアクセス ポリシーの変更の詳細については、「[Azure Active Directory の条件付きアクセス](https://docs.microsoft.com/azure/active-directory/active-directory-conditional-access-azure-portal)」を参照してください。 詳細については、「[アプリ保護ポリシーとは](app-protection-policy.md)」を参照してください。 ### <a name="device-configuration"></a>デバイス構成 #### <a name="device-profile-chart-and-status-list-show-all-devices-in-a-group----1449153---"></a>デバイス プロファイル チャートと状態リストでグループ内のすべてのデバイスが表示されるようになる <!-- 1449153 --> デバイス プロファイルを構成するときは (**[デバイス構成]** > **[プロファイル]**)、iOS などのデバイス プロファイルを選択します。 このプロファイルを、iOS デバイスと iOS 以外のデバイスを含むグループに割り当てます。 グラフィカル チャートの数では、プロファイルが iOS デバイス "*および*" iOS 以外のデバイスに適用されているように示されます (**[デバイス構成]** > **[プロファイル]** > 既存のプロファイルを選択 > **[概要]**)。 **[概要]** タブでグラフィカル チャートを選択すると、**[デバイスの状態]** に、iOS デバイスだけではなく、グループ内のすべてのデバイスが一覧表示されます。 この更新により、グラフィカル チャート (**[デバイス構成]** > **[プロファイル]** > 既存のプロファイルを選択 > **[概要]**) では、特定のデバイス プロファイルの数のみが表示されるようになります。 たとえば、構成デバイス プロファイルが iOS デバイスに適用される場合、チャートの一覧には iOS デバイスの数だけが表示されます。 グラフィカル チャートを選択すると開く **[デバイスの状態]** では、iOS デバイスだけが一覧表示されます。 この更新が行われている間、グラフィカル ユーザー チャートは一時的に削除されます。 #### <a name="always-on-vpn-for-windows-10---1333666---"></a>Windows 10 の Always On VPN <!--1333666 --> 現在、[Always On](https://docs.microsoft.com/windows/security/identity-protection/vpn/vpn-auto-trigger-profile#always-on) は、OMA-URI を使って作成されたカスタム仮想プライベート ネットワーク (VPN) プロファイルを使うことで、Windows 10 デバイスで使用できます。 この更新では、管理者は Azure Portal の Intune で直接、Windows 10 VPN プロファイルに対する Always On を有効にできるようになります。 Always On VPN プロファイルは、次のときに自動的に接続します。 - ユーザーが自分のデバイスにサインインしたとき - デバイスでネットワークが変更されたとき - デバイスの画面がオフにされた後でオンに戻されたとき #### <a name="new-printer-settings-for-education-profiles----1308900---"></a>教育プロファイル用の新しいプリンター設定 <!-- 1308900 --> 教育プロファイルの場合、**[プリンター]** カテゴリで新しい設定 **[プリンター]**、**[通常使うプリンター]**、**[新しいプリンターの追加]** を利用できます。 #### <a name="show-caller-id-in-personal-profile---android-enterprise-work-profile---1098984---"></a>個人プロファイルでの発信者番号通知 - Android エンタープライズ仕事用プロファイル <!--1098984 --> デバイス上で個人プロファイルを使用する場合、勤務先の作業連絡先からの発信者番号の詳細がエンド ユーザーに表示されない場合があります。 今回の更新では、**[Android エンタープライズ]** > **[デバイスの制限]** > **[仕事用プロファイルの設定]** に新しい設定が表示されます。 - 個人プロファイルに勤務先の連絡先の発信者番号を表示する 有効にすると (構成されていない場合)、勤務先の連絡先の発信者番号の詳細が個人プロファイルに表示されます。 ブロックすると、勤務先の連絡先の発信者番号は個人プロファイルに表示されません。 適用対象: Android OS v6.0 以降の Android 仕事用プロファイル デバイス #### <a name="new-windows-defender-credential-guard-settings-added-to-endpoint-protection-settings---1102252-----from-1802-and-1804--"></a>Endpoint Protection の設定に追加された新しい Windows Defender Credential Guard の設定 <!--1102252 --><!--from 1802 and 1804--> この更新により、[Windows Defender Credential Guard](https://docs.microsoft.com/windows/access-protection/credential-guard/credential-guard) (**[デバイス構成]** > **[プロファイル]** > **[Endpoint Protection]**) に、次の設定が含まれます。 - **Windows Defender Credential Guard**: 仮想化ベースのセキュリティによる Credential Guard が有効になります。 **[Platform Security Level with Secure Boot]\(セキュア ブートでのプラットフォーム セキュリティ レベル\)** と **[仮想化ベースのセキュリティ]** の両方が有効な場合にこの機能を有効にすると、次回の再起動時に資格情報を保護することができます。 次のオプションがあります。 - **[無効]**: 以前に Credential Guard が **[ロックなしで有効化]** オプションで有効になっていた場合に、Credential Guard をリモートで無効にします。 - **[UEFI ロックで有効化]**: レジストリ キーまたはグループ ポリシーを使って Credential Guard を無効にできないようにします。 この設定を使用した後に Credential Guard を無効にする場合は、グループ ポリシーを [無効] に設定する必要があります。 次に、実際に存在するユーザーの各コンピューターからセキュリティ機能を削除します。 この手順により、UEFI に存在した構成がクリアされます。 UEFI の構成が保持されている限り、Credential Guard は有効になっています。 - **[ロックなしで有効化]**: グループ ポリシーを使ってリモートで Credential Guard を無効にできるようにします。 この設定を使うデバイスは、Windows 10 (バージョン 1511) 以降を実行している必要があります。 Credential Guard を構成すると、次の関連するテクノロジが自動的に有効になります。 - **[Enable Virtualization-based Security (VBS)]\(仮想化ベースのセキュリティ (VBS) を有効にする\)**: 次回の再起動で仮想化ベースのセキュリティ (VBS) が有効になります。 仮想化ベースのセキュリティは、Windows ハイパーバイザーを使用してセキュリティ サービスのサポートを提供し、セキュア ブートを要求します。 - **[Secure Boot with Direct Memory Access (DMA)]\(直接メモリ アクセス (DMA) によるセキュア ブート\)**: セキュア ブートおよび直接メモリ アクセスによる VBS が有効になります。 DMA 保護は、ハードウェアのサポートを必要とし、正しく構成されたデバイスでのみ有効にされます。 #### <a name="use-a-custom-subject-name-on-scep-certificate----2064190---"></a>SCEP 証明書でのカスタム サブジェクト名の使用 <!-- 2064190 --> SCEP 証明書プロファイルでカスタム サブジェクトの共通名 **OnPremisesSamAccountName** を使うことができます。 たとえば、`CN={OnPremisesSamAccountName})` のように使用できます。 #### <a name="block-camera-and-screen-captures-on-android-enterprise-work-profiles----1098977---"></a>Android エンタープライズ仕事用プロファイルでカメラと画面キャプチャをブロックする <!-- 1098977 --> Android デバイスのデバイス制限を構成するときに、次の 2 つの新しいプロパティをブロックに利用できます。 - カメラ: デバイスのすべてのカメラへのアクセスを禁止します - 画面キャプチャ: 画面のキャプチャをブロックし、セキュリティで保護されたビデオ出力を持たないディスプレイ デバイスにコンテンツが表示されないようにします Android エンタープライズ仕事用プロファイルに適用されます。 #### <a name="use-cisco-anyconnect-client-for-ios----1333708---"></a>iOS 向け Cisco AnyConnect クライアントを使用する <!-- 1333708 --> iOS 用に新しい VPN プロファイルを作成するとき、**[Cisco AnyConnect]** と **[Cisco Legacy AnyConnect]** の 2 つの選択肢から選択できるようになりました。 Cisco AnyConnect プロファイルは、4.0.7x 以降のバージョンに対応しています。 既存の iOS Cisco AnyConnect VPN プロファイルは **[Cisco Legacy AnyConnect]** と表示されるようになり、現在と同じように Cisco AnyConnect 4.0.5x 以前のバージョンで引き続き動作します。 > [!NOTE] > この変更は iOS にのみ適用されます。 Android、Android エンタープライズ仕事用プロファイル、macOS プラットフォーム向けの Cisco AnyConnect オプションは、これまでどおり 1 つだけです。 ### <a name="device-enrollment"></a>デバイスの登録 #### <a name="new-enrollment-steps-for-users-on-devices-with-macos-high-sierra-10132---1734567---"></a>macOS High Sierra 10.13.2 以降のデバイスでのユーザーの新しい登録手順 <!--1734567 --> macOS High Sierra 10.13.2 では、"ユーザー承認済み" MDM 登録の概念が導入されました。 承認済みの登録で、セキュリティ上重要な一部の設定の Intune による管理が許可されます。 詳細については、Apple のサポート ドキュメント https://support.apple.com/HT208019 をご覧ください。 macOS ポータル サイトを使って登録されたデバイスは、エンド ユーザーがシステム環境設定を開いて手動で承認しない限り、"ユーザー承認されていない" ものと見なされます。 そのため、macOS ポータル サイトでは、macOS 10.13.2 以降のユーザーは、登録プロセスの最後に、登録の手動承認に移動するようになりました。 Intune 管理コンソールでは、登録されているデバイスがユーザー承認済みかどうかが示されます。 #### <a name="jamf-enrolled-macos-devices-can-now-register-with-intune----2370684---"></a>Jamf 登録 macOS デバイスを Intune に登録できるようになりました <!-- 2370684 --> macOS ポータル サイトのバージョン 1.3 と 1.4 では、Jamf デバイスが Intune に正常に登録されませんでした。 macOS ポータル サイトのバージョン 1.4.2 でこの問題が解決されました。 #### <a name="updated-help-experience-in-company-portal-app-for-android----1631531---"></a>Android 用ポータル サイト アプリでのヘルプ エクスペリエンスの更新 <!-- 1631531 --> Android プラットフォームのベスト プラクティスに合うように、Android 用ポータル サイト アプリのヘルプ エクスペリエンスが更新されました。 ご使用のアプリで問題が発生した場合は、**[メニュー]** > **[ヘルプ]** の順にタップして、次のことが行えます。 - 診断ログを Microsoft にアップロードする。 - 問題とインシデント ID を記載した電子メールを社内のサポート担当者に送信する。 更新されたヘルプ エクスペリエンスを確認するには、[[Send logs using email]\(メールでログを送信\)](/intune-user-help/send-logs-to-your-it-admin-by-email-android) および [[Send errors to Microsoft]\(エラーを Microsoft に送信\)](/intune-user-help/send-logs-to-microsoft-android) に進みます。 #### <a name="new-enrollment-failure-trend-chart-and-failure-reasons-table----1471783---"></a>新しい登録エラー傾向グラフと失敗の理由テーブル <!-- 1471783 --> [Enrollment Overview]\(登録の概要\) ページで、登録エラーの傾向と、上位 5 つのエラーの原因を表示することができます。 グラフやテーブルをクリックすると、トラブルシューティングのアドバイスや改善の提案の詳細にドリル ダウンすることができます。 ### <a name="device-management"></a>デバイス管理 #### <a name="advanced-threat-protection-atp-and-intune-are-fully-integrated----1629303---"></a>Advanced Threat Protection (ATP) と Intune は完全に統合されています <!-- 1629303 --> [Advanced Threat Protection (ATP)](https://docs.microsoft.com/windows/security/threat-protection/windows-defender-atp/dashboard-windows-defender-advanced-threat-protection) では、Windows 10 デバイスのリスク レベルが表示されます。 Windows Defender Security Center (ATP Portal) では、Microsoft Intune への接続を作成できます。 作成後、許容できる脅威レベルの決定に Intune コンプライアンス ポリシーが使用されます。 その脅威レベルを超えた場合、Azure Active Directory (AD) の条件付きアクセス ポリシーによって、組織内のさまざまなアプリへのアクセスを阻止できます。 この機能によって ATP はファイルをスキャンし、脅威を検出し、Windows 10 デバイス上のあらゆるリスクを報告できます。 [Intune で条件付きアクセスによる ATP を有効にする](advanced-threat-protection.md)方法に関するページを参照してください。 #### <a name="support-for-user-less-devices----1637553---"></a>ユーザーのいないデバイスのサポート <!-- 1637553 --> Intune は、Microsoft Surface Hub など、ユーザーのいないデバイスでコンプライアンスを評価する機能をサポートします。 コンプライアンス ポリシーは、特定のデバイスを対象にすることができます。 したがって、ユーザーが関連付けられていないデバイスのコンプライアンス (および非コンプライアンス) を判断できます。 #### <a name="delete-autopilot-devices----1713650---"></a>Autopilot デバイスを削除する <!-- 1713650 --> Intune 管理者は、[Autopilot デバイスを削除する](enrollment-autopilot.md#delete-autopilot-devices)ことができます。 #### <a name="improved-device-deletion-experience---1832333---"></a>デバイス削除エクスペリエンスの向上 <!--1832333 --> [Intune からデバイスを削除する](devices-wipe.md#delete-devices-from-the-intune-portal)前に、会社のデータを削除したり、デバイスを工場出荷時の状態にリセットしたりする必要はなくなります。 新しいエクスペリエンスを表示するには、Intune にサインインし、**[デバイス]** > **[すべてのデバイス]** > デバイスの名前 > **[削除]** の順に選びます。 ワイプ/使用停止の確認が必要な場合は、**[削除]** の前に **[会社データを削除する]** と **[出荷時の設定にリセット]** を実行して、標準のデバイス ライフサイクル ルートを使うことができます。 #### <a name="play-sounds-on-ios-when-in-lost-mode----1947769---"></a>紛失モードになったときに iOS で音を鳴らす <!-- 1947769 --> 監視対象の iOS デバイスがモバイル デバイス管理 (MDM) の[紛失モード](device-lost-mode.md)になったときに、[音を鳴らす](device-locate.md#activate-lost-mode-sound-alert-on-an-ios-device)ことができます (**[デバイス]** > **[すべてのデバイス]** > iOS デバイスを選択 > **[概要]** > **[詳細]**)。 音は、デバイスが紛失モードではなくなるまで、またはユーザーがデバイスで音を無効にするまで、鳴り続けます。 iOS デバイス 9.3 以降に適用されます。 #### <a name="block-or-allow-web-results-in-searches-made-on-an-intune-device---1972804--"></a>Intune デバイスで行った Web 検索の結果のブロックまたは許可 <!--1972804--> 管理者は、デバイスで行った Web 検索の結果をブロックできるようになりました。 #### <a name="improved-error-messaging-for-apple-mdm-push-certificate-upload-failure----2172331---"></a>Apple MDM プッシュ通知証明書のアップロード失敗のエラー メッセージの改善 <!-- 2172331 --> 既存の MDM 証明書を更新するときは同じ Apple ID を使う必要があることが、エラー メッセージで説明されます。 #### <a name="test-the-company-portal-for-macos-on-virtual-machines----2216679---"></a>仮想マシンでの macOS 用ポータル サイトのテスト <!-- 2216679 --> Parallels Desktop と VMware Fusion の仮想マシンで IT 管理者が macOS 用ポータル サイト アプリをテストするために役立つガイドを公開しました。 詳しくは、「[テスト用に仮想 macOS マシンを登録する](macos-enroll.md#enroll-virtual-macos-machines-for-testing)」を参照してください。 ### <a name="intune-apps"></a>Intune アプリ #### <a name="user-experience-update-for-the-company-portal-app-for-ios---1412866---"></a>iOS 用ポータル サイト アプリに関するユーザー エクスペリエンスの更新プログラム <!--1412866 --> iOS 用のポータル サイト アプリに対して、主要なユーザー エクスペリエンスの更新プログラムをリリースしました。 この更新プログラムでは、最新のルック アンド フィールを含む完全なビジュアル再設計が行われています。 アプリの機能を維持した上で、操作性とアクセシビリティが向上しています。 また、次のような更新が行われています。 - iPhone X のサポート。 - アプリの起動および読み込み応答を速くして、ユーザー時間を節約。 - 最新の状態情報をユーザーに提供するための進行状況バーを追加。 - ログのアップロード方法を改善。これにより、問題が生じた場合に、その内容を簡単にレポートできる。 更新された外観を確認するには、[アプリ UI の新機能](whats-new-app-ui.md)に関するページを参照してください。 #### <a name="protect-on-premises-exchange-data-using-intune-app-and-ca----1056954---"></a>Intune APP および CA を使用したオンプレミス Exchange データの保護 <!-- 1056954 --> Intune アプリ ポリシー保護 (APP) および条件付きアクセス (CA) を使用して、Outlook Mobile によるオンプレミスの Exchange データへのアクセスを保護できるようになりました。 Azure portal 内でアプリ保護ポリシーを追加または変更するには、**[Microsoft Intune]** > **[クライアント アプリ]** > **[アプリ保護ポリシー]** の順に選択します。 この機能を使用する前に、[iOS および Android 用 Outlook の要件](https://technet.microsoft.com/en-us/library/mt846639(v=exchg.160).aspx)を満たしていることを確認します。 ### <a name="user-interface"></a>ユーザー インターフェイス #### <a name="improved-device-tiles-in-the-windows-10-company-portal---2213364---"></a>Windows 10 ポータル サイトのデバイス タイルの改善 <!--2213364 --> 目の不自由なユーザーでもアクセスしやすく、画面読み上げツールでの動作が改善されるように、タイルが更新されました。 #### <a name="send-diagnostic-reports-in-company-portal-app-for-macos----2216677---"></a>macOS 用ポータル サイト アプリでの診断レポートの送信 <!-- 2216677 --> macOS デバイス用ポータル サイト アプリが更新され、ユーザーが Intune に関連するエラーを報告する方法が改善されました。 ポータル サイト アプリから、従業員は次の操作を行うことができます。 - Microsoft 開発者チームに直接診断レポートをアップロードする。 - 会社の IT サポート チームにインシデント ID をメールで送ります。 詳細については、[macOS のエラーの送信](/intune-user-help/send-errors-macos)に関するページを参照してください。 #### <a name="intune-adapts-to-fluent-design-system-in-the-company-portal-app-for-windows-10----1195010---"></a>Intune は、Windows 10 のポータル サイト アプリの Fluent Design System に適合します。 <!-- 1195010 --> Windows 10 の Intune ポータル サイト アプリが [Fluent Design System のナビゲーション ビュー](https://docs.microsoft.com/windows/uwp/design/basics/navigation-basics)に合わせて更新されました。 アプリの側面だけでなく、すべてのトップ レベルのページに静的な縦方向リストが表示されます。 リンクをクリックすると、ページをすばやく表示したり、ページを切り替えたりできます。 これは現在作成中の更新の一部であり、今後さらにアダプティブで馴染みがあり、使いやすい Intune の機能を提供していきます。 更新された外観を確認するには、[アプリ UI の新機能](whats-new-app-ui.md)に関するページを参照してください。 <!-- ########################## --> ## <a name="march-2018"></a>2018 年 3 月 ### <a name="app-management"></a>アプリ管理 #### <a name="alerts-for-expiring-ios-line-of-business-lob-apps-for-microsoft-intune----748789---"></a>Microsoft Intune 用の iOS 基幹業務 (LOB) アプリの有効期限切れを示すアラート <!-- 748789 --> Azure Portal の Intune では、有効期限が近づいている iOS 基幹業務アプリが警告されます。 iOS 基幹業務アプリの新しいバージョンをアップロードすると、有効期限に関する通知が Intune によってアプリ一覧から削除されます。 この有効期限に関する通知は、iOS 基幹業務アプリが新たにアップロードされた場合にのみアクティブになります。 警告が表示されるのは、iOS LOB アプリのプロビジョニング プロファイルの有効期限が切れる 30 日前となります。 有効期限が切れると、アラート表示が "期限切れ" 表示に変わります。 #### <a name="customize-your-company-portal-themes-with-hex-codes---1049561---"></a>Intune ポータル サイトのテーマを 16 進コードでカスタマイズする <!--1049561 --> Intune ポータル サイト アプリのテーマの色を、16 進コードを使ってカスタマイズできます。 16 進コードを入力すると、Intune はテキストの色と背景の色の間のコントラストが最高レベルになるようにテキストの色を決定します。 **[クライアント アプリ]** > **[ポータル サイト]** で、テキストの色および色に対する会社のロゴの両方をプレビューできます。 ### <a name="including-and-excluding-app-assignment-based-on-groups-for-android-enterprise----1813081---"></a>Android Enterprise に対するグループに基づくアプリ割り当ての追加と除外 <!-- 1813081 --> Android エンタープライズ (旧称 Android for Work) では、グループの追加と除外をサポートしていますが、事前に作成された**すべてのユーザー**と**すべてのデバイス**の組み込みグループはサポートしていません。 詳細については、「[Microsoft Intune でのアプリ割り当ての組み込みと除外](apps-inc-exl-assignments.md)」を参照してください。 ### <a name="device-management"></a>デバイス管理 ### <a name="export-all-devices-into-csv-files-in-ie-microsoft-edge-or-chrome----2258071---"></a>IE、Microsoft Edge、または Chrome ですべてのデバイスを CSV ファイルにエクスポートする <!-- 2258071 --> **[デバイス]** > **[すべてのデバイス]** で、デバイスを CSV 形式の一覧に**エクスポート**することができます。 10,000 を超えるデバイスを持つ Internet Explorer (IE) ユーザーは、デバイスを複数のファイルに正常にエクスポートできます。 各ファイルには、最大 10,000 のデバイスが含まれます。 30,000 を超えるデバイスを持つユーザーは、デバイスを複数のファイルに正常にエクスポートできます。 各ファイルには、最大 30,000 のデバイスが含まれます。 管理するデバイスに対して実行できる操作の詳細については、[デバイスの管理](device-management.md)に関するページを参照してください。 #### <a name="new-security-enhancements-in-the-intune-service-----1637539---"></a>Intune サービスでの新たなセキュリティ強化 <!-- 1637539 --> Azure 上の Intune にトグルが導入されました。このスイッチを利用することにより、Intune スタンドアロンのお客様は、ポリシーが割り当てられていないデバイスを **[準拠]** として処理 (セキュリティ機能オフ) することも、そのようなデバイスを **[非準拠]** として処理 (セキュリティ機能オン) することもできます。 これにより、デバイスのポリシー準拠が評価された後でのみ、リソースへのアクセスが保証されます。 この機能がユーザーに及ぼす影響は、コンプライアンス ポリシーが割り当て済みかどうかによって異なります。 - 新しいアカウントまたは既存のアカウントがあるが、コンプライアンス ポリシーをデバイスに割り当てていない場合、トグルは自動的に **[準拠]** に設定されます。 コンソールの既定の設定では、この機能はオフになっています。 エンドユーザーに与える影響はありません。 - 既存のアカウントがあり、デバイスにはコンプライアンス ポリシーが割り当てられている場合、トグルは自動的に **[非準拠]** に設定されます。 この機能は、3 月の更新のロールアウト時に、既定の設定としてオンになっています。 コンプライアンス ポリシーを条件付きアクセス (CA) と共に使用し、この機能がオンになっている場合、少なくとも 1 つのコンプライアンス ポリシーが割り当てられているデバイスは、CA によってブロックされるようになりました。 これらのデバイスに関連付けられていて、以前は電子メールへのアクセスを許可されていたエンド ユーザーは、少なくとも 1 つのコンプライアンス ポリシーをすべてのデバイスに割り当てない限り、アクセスできなくなります。 Intune サービスの 3 月の更新プログラムにより、既定のトグル状態は UI にすぐに表示されるようになりましたが、このトグル状態はすぐに適用されないので注意してください。 トグルに変更を加えても、アカウントがフライトされて準備が整うまで、デバイスのポリシー準拠に影響はありません。 アカウントのフライトが完了したら、メッセージ センターを介してお知らせします。 これには、3 月の Intune サービスの更新が行われてから、数日かかる場合があります。 **追加情報**: [https://aka.ms/compliance_policies](https://aka.ms/compliance_policies) #### <a name="enhanced-jailbreak-detection----846515---"></a>脱獄の検出の機能強化 <!-- 846515 --> 強化された脱獄の検出の新しいコンプライアンス設定により、Intune による脱獄されたデバイスの評価方法が向上します。 この設定を使用すると、デバイスはこれまでより頻繁に Intune にチェックインされます。このときデバイスの場所サービスが使用されるため、バッテリの使用量に影響を与えます。 #### <a name="reset-passwords-for-android-o-devices----1238299---"></a>Android O デバイスのパスワードをリセットする <!-- 1238299 --> 作業プロファイルで、登録済みの Android 8.0 デバイスのパスワードをリセットできるようになります。 Android 8.0 デバイスに "パスワード リセット" 要求を送信すると、新しいデバイス ロック解除パスワードまたはマネージド プロファイルのチャレンジが、現在のユーザーに設定されます。 パスワードまたはチャレンジが送信され、すぐには有効になります。 #### <a name="targeting-compliance-policies-to-devices-in-device-groups---1307012---"></a>デバイス グループのデバイスへのコンプライアンス ポリシーのターゲット <!--1307012 --> ユーザー グループ内のユーザーを、コンプライアンス ポリシーのターゲットにすることができます。 この更新プログラムを使用すると、デバイス グループ内のデバイスを、コンプライアンス ポリシーのターゲットにすることができます。 デバイス グループの一部としてターゲットにされたデバイスがコンプライアンス アクションを受け取ることはありません。 #### <a name="new-management-name-column----1333586---"></a>新しい [管理名] 列 <!-- 1333586 --> **[管理名]** という名前の新しい列がデバイス ブレードで使用できます。 これは、次の式に基づいてデバイスごとに割り当てられる、自動生成された編集不可能な名前です。 - すべてのデバイスの既定の名前: <username><em><devicetype></em><enrollmenttimestamp> - 一括追加デバイスの場合: <PackageId/ProfileId><em><DeviceType></em><EnrollmentTime> これは、デバイス ブレードの省略可能な列です。 既定では使用できず、列セレクターを使用してのみアクセスできます。 この新しい列によるデバイス名への影響はありません。 #### <a name="ios-devices-are-prompted-for-a-pin-every-15-minutes---1550837---"></a>iOS デバイスで 15 分ごとに PIN の入力を求める <!--1550837 --> iOS デバイスにコンプライアンスまたは構成ポリシーが適用されると、ユーザーは 15 分ごとに PIN を設定するように求められます。 PIN を設定するまで継続してユーザーは入力を求められます。 #### <a name="schedule-your-automatic-updates---1805514---"></a>自動更新スケジュールの設定 <!--1805514 --> Intune では、[Windows Update リングの設定](windows-update-for-business-configure.md)を使用して、自動更新のインストールを制御することができます。 この更新プログラムでは、週、日、時刻などを指定して、繰り返し更新が発生するようスケジュールすることができます。 #### <a name="use-fully-distinguished-name-as-subject-for-scep-certificate---2221763---"></a>SCEP 証明書のサブジェクトとして完全な識別名を使用する <!--2221763 --> SCEP 証明書プロファイルを作成するときには、サブジェクト名を入力します。 この更新プログラムでは、サブジェクト名として、完全な識別名を使用できるようになります。 **サブジェクト名**に対して **[カスタム]** を選択し、`CN={{OnPrem_Distinguished_Name}}` と入力します。 `{{OnPrem_Distinguished_Name}}` 変数を使用するには、[Azure Active Directory (AD) Connect](https://docs.microsoft.com/azure/active-directory/connect/active-directory-aadconnect) を使用して、`onpremisesdistingishedname` ユーザー属性を Azure AD と同期させます。 ### <a name="device-configuration"></a>デバイス構成 #### <a name="enable-bluetooth-contact-sharing---android-for-work---1098983---"></a>Bluetooth での連絡先の共有の有効化 - Android for Work <!--1098983 --> Android の既定では、仕事用プロファイルの連絡先が Bluetooth デバイスと同期することはできません。 その結果、Bluetooth デバイスに対して、仕事用プロファイルの連絡先が発信者 ID に表示されません。 この更新プログラムでは、**[Android for Work]** > **[デバイスの制限]** > **[仕事用プロファイルの設定]** に、次の新しい設定が表示されます。 - Bluetooth 経由での連絡先の共有 Intune の管理者は、これらの設定を構成して共有を有効にできます。 これは、デバイスを、ハンズフリー使用のために発信者 ID を表示する、車を拠点とする Bluetooth デバイスとペアリングする場合に便利です。 有効にすると、仕事用プロファイルの連絡先が表示されます。 無効にすると、仕事用プロファイルの連絡先は表示されません。 #### <a name="configure-gatekeeper-to-control-macos-app-download-source----1690459---"></a>macOS アプリ ダウンロード ソースを制御するための Gatekeeper の構成 <!-- 1690459 --> ダウンロードできるアプリの場所を制御することでアプリからデバイスを保護するように、Gatekeeper を構成することができます。 構成できるダウンロード ソースは、**[Mac App Store]**、**[Mac App Store と識別された開発者]**、または **[どこでも]** となります。 また、ユーザーが Ctrl キーを押しながらクリックしてアプリをインストールすることによりこれらの Gatekeeper 制御をオーバーライドできるかどうかも構成できます。 これらの設定は、**[デバイス構成]** -> **[プロファイルの作成]** -> **[macOS]** -> **[Endpoint Protection]** にあります。 #### <a name="configure-the-mac-application-firewall----1690461---"></a>Mac アプリケーションのファイアウォールの構成 <!-- 1690461 --> Mac アプリケーションのファイアウォールを構成できます。 これを使って、ポートごとではなく、アプリケーションごとに接続を制御できます。 これにより、ファイアウォールによる保護を簡単に利用できるようになり、正当なアプリ用に開かれているネットワーク ポートを望ましくないアプリが制御するのを防ぐのに役立ちます。 この設定は、**[デバイス構成]** -> **[プロファイルの作成]** -> **[macOS]** -> **[Endpoint Protection]** にあります。 ファイアウォールの設定を有効にすると、2 つの戦略を使ってファイアウォールを構成できます。 - すべての着信接続をブロックする 対象デバイスに対するすべての着信接続をブロックすることができます。 この方法を選択した場合、すべてのアプリの着信接続がブロックされます。 - 特定のアプリを許可またはブロックする 特定のアプリからの着信接続の受信を許可またはブロックできます。 ステルス モードを有効にして、プローブ要求への応答を防ぐこともできます。 #### <a name="detailed-error-codes-and-messages----1376342---"></a>詳しいエラー コードとメッセージ <!-- 1376342 --> デバイス構成で、より詳しいエラー コードとエラー メッセージを確認できます。 この改善された報告機能には、設定、設定の状態、トラブルシューティングの詳細が表示されます。 ##### <a name="more-information"></a>詳細情報 - すべての着信接続をブロックする すべての共有サービス (ファイル共有や画面共有など) が着信接続を受信するのをブロックします。 その場合でも、次のシステム サービスは着信接続を受信できます。 - configd - DHCP および他のネットワーク構成サービスを実装します - mDNSResponder - Bonjour を実装します - racoon - IPSec を実装します 共有サービスを使うには、**[着信接続]** を (**[ブロック]** ではなく) **[未構成]** に設定します。 - ステルス モード これを有効にすると、コンピューターはプローブ要求に応答しなくなります。 その場合でも、コンピューターは承認されたアプリの着信要求には応答します。 ICMP (ping) などの予期しない要求は無視されます。 #### <a name="disable-checks-on-device-restart---1805490---"></a>デバイス再起動時のチェックの無効化 <!--1805490 --> Intune によって[ソフトウェア更新プログラムの管理](windows-update-for-business-configure.md)を制御することができます。 この更新プログラムでは、<strong>[再起動チェック]</strong> プロパティが提供され、既定では有効になります。 デバイスを再起動する際に発生する一般的なチェック (アクティブなユーザー、バッテリのレベルなど) をスキップするには、<strong>[スキップ]</strong> を選択します。 #### <a name="new-windows-10-insider-preview-channels-available-for-deployment-rings----1746293---"></a>展開リングで利用できる新しい Windows 10 Insider Preview チャンネル <!-- 1746293 --> Windows 10 展開リングを作成するときに、次の Windows 10 Insider Preview サービス チャンネルを選択するオプションが使用できるようになりました。 - Windows Insider ビルド - 高速 - Windows Insider ビルド - 低速 - Windows Insider ビルドのリリース これらのチャネルの詳細については、「[Insider Preview ビルドの管理](https://insider.windows.com/for-business-organization-admin/)」を参照してください。 Intune での展開チャネルの作成の詳細については、「[ソフトウェア更新プログラムの管理](windows-update-for-business-configure.md)」を参照してください。 ### <a name="new-windows-defender-exploit-guard-settings----1631893---"></a>Windows Defender Exploit Guard の新しい設定 <!-- 1631893 --> <strong>[攻撃の回避]</strong> の 6 つの新しい設定と、拡張された <strong>[フォルダー アクセスの制御: フォルダーの保護]</strong> 機能が利用できるようになりました。 これらの設定は、[デバイス構成] > [プロファイル] > [プロファイルの作成] > [Endpoint Protection] > [Windows Defender Exploit Guard] にあります。 #### <a name="attack-surface-reduction"></a>攻撃の回避 |設定の名前 |設定オプション |説明 | |---------|---------|---------| |Advanced ransomware protection (高度なランサムウェア防止)|有効、監査、未構成|積極的なランサムウェア防止を使います。| |Flag credential stealing from the Windows local security authority subsystem (Windows ローカル セキュリティ機関サブシステムからの資格情報の盗難にフラグを設定する)|有効、監査、未構成|Windows ローカル セキュリティ機関サブシステム (lsass.exe) からの資格情報の盗難にフラグを設定します。| |Process creation from PSExec and WMI commands (PSExec および WMI コマンドからのプロセス作成)|ブロック、監査、未構成|PSExec および WMI コマンドから開始されるプロセス作成をブロックします。| |Untrusted and unsigned processes that run from USB (USB から実行された信頼されていない署名なしのプロセス)|ブロック、監査、未構成|USB から実行された信頼されていない署名なしのプロセスをブロックします。| |Executables that don’t meet a prevalence, age, or trusted list criteria (普及、経過時間、または信頼されたリストの条件を満たしていない実行可能ファイル)|ブロック、監査、未構成|普及、経過時間、または信頼されたリストの条件を満たしていない実行可能ファイルの実行をブロックします。| #### <a name="controlled-folder-access"></a>フォルダー アクセスの制御 | 設定の名前 | 設定オプション | 説明 | |-----------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------|-------------| | フォルダーの保護 (実装済み) | 未構成、有効、監査のみ (実装済み)<br><br> <strong>新規</strong><br>Block disk modification (ディスクの変更をブロックする)、Audit disk modification (ディスクの変更を監査する) | | ファイルおよびフォルダーを、悪意のあるアプリによる未承認の変更から保護します。<br><br>**有効**: 信頼されていないアプリによる、保護されたフォルダー内のファイルの変更または削除、およびディスク セクターへの書き込みを、禁止します。<br><br> **Block disk modification only (ディスクの変更のみをブロック)**:<br>信頼されていないアプリによるディスク セクターへの書き込みをブロックします。 信頼されていないアプリは、保護されたフォルダー内のファイルを変更または削除することはできます。 ### <a name="intune-apps"></a>Intune アプリ ### <a name="azure-active-directory-web-sites-can-require-the-intune-managed-browser-app-and-support-single-sign-on-for-the-managed-browser-public-preview----710595---"></a>Azure Active Directory の Web サイトでは、Intune Managed Browser アプリを要求し、Managed Browser (パブリック プレビュー) に対するシングル サインオンをサポートすることができる <!-- 710595 --> Azure Active Directory (Azure AD) を使用している場合、モバイル デバイスでの Web サイトへのアクセスを Intune Managed Browser アプリに制限できるようになりました。 Managed Browser では、Web サイトのデータは安全性が維持され、エンド ユーザーの個人データと分離されます。 さらに、Managed Browser は、Azure AD によって保護されているサイトに対するシングル サインオン機能をサポートします。 Managed Browser にサインインすると、または Intune によって管理されている別のアプリでデバイスの Managed Browser を使うと、ユーザーが資格情報を入力しなくても、Managed Browser は Azure AD によって保護されている会社サイトにアクセスできます。 この機能は、Outlook Web Access (OWA) や SharePoint Online などのサイトだけでなく、Azure App プロキシ経由でアクセスされるイントラネット リソースのような他の企業サイトにも適用されます。 詳細については、「[Azure Active Directory の条件付きアクセスのアクセス制御](https://docs.microsoft.com/azure/active-directory/active-directory-conditional-access-controls)」を参照してください。 #### <a name="company-portal-app-for-android-visual-updates---976944---"></a>Android 用ポータル サイト アプリのビジュアルの更新 <!--976944 --> Android 用 Intune ポータル サイト アプリを、Android の[マテリアル デザイン](https://material.io/) ガイドラインに合わせて更新しています。 「[アプリ UI の新機能](whats-new-app-ui.md)」の記事で、新しいアイコンの画像を確認することができます。 #### <a name="company-portal-enrollment-improved----1874230-eeready--"></a>ポータル サイトの登録の機能強化 <!-- 1874230 eeready--> Windows 10 ビルド 1703 以降の Intune ポータル サイトを使ってデバイスを登録するユーザーは、アプリを離れることなく登録の最初の手順を完了できるようになりました。 #### <a name="hololens-and-surface-hub-now-appear-in-device-lists---1725868---"></a>HoloLens と Surface Hub がデバイス リストに表示されるようになった <!--1725868 --> Intune に登録された HoloLens および Surface Hub のデバイスを Android 用ポータル サイト アプリに表示するためのサポートが追加されました。 #### <a name="custom-book-categories-for-volume-purchase-program-vpp-ebooks----1488911---"></a>ボリューム購入プログラム (VPP) 電子ブックのカスタム ブック カテゴリ <!-- 1488911 --> 電子ブックのカスタム カテゴリを作成し、VPP の電子ブックをカスタム電子ブック カテゴリに割り当てることができます。 エンド ユーザーは、新しく作成された電子ブック カテゴリとそのカテゴリに割り当てられているブックを見ることができます。 詳細については、「[Microsoft Intune によるボリューム購入アプリとブックの管理](vpp-apps.md)」を参照してください。 #### <a name="support-changes-for-company-portal-app-for-windows-send-feedback-option----2070166---"></a>Windows 用 Intune ポータル サイト アプリのフィードバック送信オプションのサポートの変更 <!-- 2070166 --> 2018 年 4 月 30 日以降、Windows 用 Intune ポータル サイト アプリの **[フィードバックの送信]** オプションは、Windows 10 Anniversary Update (1607) 以降を実行するデバイスでのみ動作します。 次の Windows で Intune ポータル サイト アプリを使用している場合、フィードバック送信オプションはサポートされません。 - Windows 10、1507 リリース - Windows 10、1511 リリース - Windows Phone 8。1 お使いのデバイスが Windows 10 RS1 以降を実行している場合は、Store から最新バージョンの Windows 用 Intune ポータル サイト アプリをダウンロードしてください。 サポートされないバージョンを実行している場合は、引き続き次のチャネルでフィードバックを送信してください。 - Windows 10 のフィードバック ハブ アプリ - WinCPfeedback@microsoft.com へのメール #### <a name="new-windows-defender-application-guard-settings----1631890---"></a>Windows Defender Application Guard の新しい設定 <!-- 1631890 --> - **グラフィック アクセラレータを有効にする**: 管理者は、Windows Defender Application Guard に対して仮想グラフィック プロセッサを有効にすることができます。 この設定を使うと、CPU はグラフィックのレンダリングを vGPU にオフロードできます。 これにより、グラフィックが多用されている Web サイトを操作するとき、またはコンテナー内のビデオを見るときのパフォーマンスが向上します。 - **SaveFilestoHost**: 管理者は、コンテナーで実行されている Microsoft Edge からホスト ファイル システムへのファイルの受け渡しを有効にすることができます。 これをオンにすると、ユーザーはコンテナー内の Microsoft Edge からホスト ファイル システムにファイルをダウンロードできます。 #### <a name="mam-protection-policies-targeted-based-on-management-state----1665993---"></a>管理の状態に基づいて対象とされる MAM 保護ポリシー <!-- 1665993 --> デバイスの管理状態に基づいて、MAM ポリシーを対象とすることができます。 - **Android デバイス** - アンマネージド デバイス、Intune で管理されたデバイス、Intune で管理された Android Enterprise Profiles (旧称 Android for Work) を対象にできます。 - **iOS デバイス** - アンマネージド デバイス (MAM のみ) または Intune で管理されたデバイスを対象にできます。 > [!NOTE] > - この機能用の iOS サポートは、2018 年 4 月を通してロールアウトされます。 詳細については、[デバイス管理状態に基づくターゲット アプリ保護ポリシー](app-protection-policies.md)に関するページを参照してください。 #### <a name="improvements-to-the-language-in-the-company-portal-app-for-windows----1683758---"></a>Windows 用ポータル サイト アプリの言語を改善 <!-- 1683758 --> ユーザーにわかりやすく、組織に特有の言語となるように、Windows 10 用ポータル サイトの言語に改善を加えました。 改善された内容を示すサンプル画像を確認するには、[アプリ UI の新機能](whats-new-app-ui.md)に関するページを参照してください。 #### <a name="new-additions-to-our-docs-about-user-privacy----1440709---"></a>ユーザー プライバシーに関する Microsoft ドキュメントへの新規追加 <!-- 1440709 --> エンドユーザーが自身のデータとプライバシーをより厳密に制御できるようにするための Microsoft の取り組みの一環として、ポータル サイト アプリによってローカルに格納されたデータの表示および削除方法を説明した Microsoft ドキュメントに対する更新内容を公開しました。 これらの更新内容は以下で確認できます。 - **Android**: [Intune から Android デバイスを削除する方法](/intune-user-help/unenroll-your-device-from-intune-android) - **Android (ユーザーが使用条件を拒否した場合)**: ["使用条件" が拒否された場合にデバイス管理を削除する](/intune-user-help/unenroll-your-device-from-intune-if-you-declined-terms-of-use-android) - **iOS**: [Intune から iOS デバイスを削除する](/intune-user-help/unenroll-your-device-from-intune-ios) - **Windows**: [Intune から Windows デバイスを削除する](/intune-user-help/unenroll-your-device-from-intune-windows) <!-- ########################## --> ## <a name="february-2018"></a>2018 年 2 月 ### <a name="device-enrollment"></a>デバイスの登録 #### <a name="intune-support-for-multiple-apple-dep--apple-school-manager-accounts----747685---"></a>複数の Apple DEP および Apple School Manager アカウントに対する Intune サポート <!-- 747685 --> 最大 100 個の異なる [Apple Device Enrollment Program (DEP)](device-enrollment-program-enroll-ios.md) または [Apple School Manager](apple-school-manager-set-up-ios.md) アカウントからのデバイス登録が、Intune でサポートされます。 アップロードされる各トークンは、登録プロファイルとデバイスで、別々に管理できます。 アップロードされる DEP および School Manager のトークンごとに、異なる登録プロファイルを自動で割り当てることができます。 複数の School Manager トークンがアップロードされた場合、Microsoft 学校データ同期と共有できるのは、一度に 1 つのみです。 移行後、Graph で Apple DEP および ASM を管理するベータ版の Graph API と公開されたスクリプトは、動作しなくなります。 現在、新しいベータ版の Graph API の開発が進行中で、移行後にリリースされる予定です。 #### <a name="see-enrollment-restrictions-per-user----1634444-eeready-wnready---"></a>ユーザーごとに登録の制限を表示する <!-- 1634444 eeready wnready --> **[トラブルシューティング]** ブレードの **[割り当て]** 一覧から **[登録制限]** を選択すると、各ユーザーに対して有効な[登録制限](enrollment-restrictions-set.md)を参照することができます。 #### <a name="new-option-for-user-authentication-for-apple-bulk-enrollment----747625-eeready---"></a>Apple の一括登録に対するユーザー認証の新しいオプション <!-- 747625 eeready --> > [!NOTE] > 新しいテナントでは、これは直ちに表示されます。 既存のテナントでは、この機能は 4 月にロールアウトされます。 このロールアウトが完了するまで、これらの新しい機能にアクセスできないことがあります。 Intune では現在、次の登録方法について、ポータル サイト アプリを使用してデバイスを認証できます。 - Apple Device Enrollment Program - Apple School Manager - Apple Configurator Enrollment このポータル サイト オプションを使用すると、これらの登録方法をブロックすることなく、Azure Active Directory の多要素認証を強制できます。 このポータル サイト オプションを使用する場合、iOS 設定アシスタントでの、ユーザー アフィニティ登録用のユーザー認証がスキップされます。 つまり、このデバイスは、最初はユーザーのいないデバイスとして登録されるため、ユーザー グループの構成やポリシーは受信しません。 デバイス グループの構成とポリシーのみを受信します。 ただし、ポータル サイト アプリは自動的にデバイスにインストールされます。 ポータル サイト アプリを最初に起動してサインインするユーザーは、Intune でそのデバイスと関連付けられます。 この時点で、ユーザー グループの構成とポリシーが、このユーザーに送信されます。 ユーザーの関連付けを変更するには、再登録が必要です。 #### <a name="intune-support-for-multiple-apple-dep--apple-school-manager-accounts----747685-eeready---"></a>複数の Apple DEP および Apple School Manager アカウントに対する Intune サポート <!-- 747685 eeready --> 最大 100 個の異なる Apple Device Enrollment Program (DEP) または Apple School Manager アカウントからのデバイス登録が、Intune でサポートされます。 アップロードされる各トークンは、登録プロファイルとデバイスで、別々に管理できます。 アップロードされる DEP および School Manager のトークンごとに、異なる登録プロファイルを自動で割り当てることができます。 複数の School Manager トークンがアップロードされた場合、Microsoft 学校データ同期と共有できるのは、一度に 1 つのみです。 移行後、Graph で Apple DEP および ASM を管理するベータ版の Graph API と公開されたスクリプトは、動作しなくなります。 現在、新しいベータ版の Graph API の開発が進行中で、移行後にリリースされる予定です。 ### <a name="remote-printing-over-a-secure-network----1709994----"></a>セキュリティで保護されたネットワークでのリモート印刷 <!-- 1709994 --> PrinterOn のワイヤレス モバイル印刷ソリューションは、時間や場所を問わない、セキュリティで保護されたネットワークでのリモート印刷を可能にします。 PrinterOn は、iOS 向けと Android 向けのどちらの Intune APP SDK とも統合します。 管理コンソールの Intune の **[アプリ保護ポリシー]** ブレードから、アプリ保護ポリシーのターゲットをこのアプリにすることもできます。 エンド ユーザーは、Play ストア、または iTunes から PrinterOn for Microsoft アプリをダウンロードして、Intune エコシステム内で使用できます。 ### <a name="macos-company-portal-support-for-enrollments-that-use-the-device-enrollment-manager----1352411---"></a>デバイス登録マネージャーを使う登録の macOS ポータル サイトによるサポート <!-- 1352411 --> ユーザーは、macOS ポータル サイトで登録するときに、デバイス登録マネージャーを使うことができるようになりました。 ### <a name="device-management"></a>デバイス管理 #### <a name="windows-defender-health-status-and-threat-status-reports---854704---"></a>Windows Defender の正常性状態レポートと脅威状態レポート <!--854704 --> Windows Defender の正常性と状態を理解することは、Windows PC の管理において重要なことです。 この更新では、Intune に、Windows Defender エージェントの状態と正常性の新しいレポートやアクションが追加されています。 [デバイスのポリシー準拠ワークロード](compliance-policy-monitor.md)の状態ロールアップ レポートを使用すると、次のことが必要なデバイスを確認できます。 - 署名の更新 - 再起動 - 手動介入 - フル スキャン - 介入を必要とする他のエージェント状態 各状態カテゴリのドリルイン レポートでは、注意の必要な PC または**クリーン**と報告されている PC が個別に一覧表示されます。 #### <a name="new-privacy-settings-for-device-restrictions---1308926---"></a>デバイス制限のための新しいプライバシー設定 <!--1308926 --> [2 つの新しいプライバシー設定](device-restrictions-windows-10.md#privacy)をデバイスで利用できるようになりました。 - **ユーザー アクティビティの公開**: これを **[ブロック]** に設定すると、タスク スイッチャーでの共有エクスペリエンスおよび最近使われたリソースの検出が行われなくなります。 - **ローカル アクティビティの場合のみ**: これを **[ブロック]** に設定すると、ローカル アクティビティのみに基づいて、タスク スイッチャーでの共有エクスペリエンスおよび最近使われたリソースの検出が行われなくなります。 #### <a name="new-settings-for-the-microsoft-edge-browser---1469166---"></a>Microsoft Edge ブラウザーの新しい設定 <!--1469166 --> Microsoft Edge ブラウザーを備えたデバイスで、[2 つの新しい設定](device-restrictions-windows-10.md#microsoft-edge-browser) **[Path to favorites file]\(お気に入りファイルへのパス\)** と **[Changes to Favorites]\(お気に入りの変更\)** が利用できるようになりました。 ### <a name="app-management"></a>アプリ管理 #### <a name="protocol-exceptions-for-applications---1035509---"></a>アプリケーションのプロトコル例外 <!--1035509 --> Intune モバイル アプリケーション管理 (MAM) データ転送ポリシーの例外を作成し、特定の管理されていないアプリケーションを開くことができまるようになりました。 このようなアプリケーションは、IT 担当者によって信頼されている必要があります。 データ転送ポリシーを**管理対象アプリのみ**に設定すると、作成した例外以外については、やはりデータ転送が Intune で管理されているアプリケーションだけに制限されます。 プロトコル (iOS) またはパッケージ (Android) を使って制限を作成することができます。 たとえば、MAM データ転送ポリシーに対する例外として、Webex パッケージを追加できます。 これにより、管理された Outlook メール メッセージ内の Webex リンクを、Webex アプリケーションで直接開くことができます。 他の管理されていないアプリケーションでは、データ転送が制限されます。 詳細については、「[Data transfer policy exceptions for apps](app-protection-policies-exception.md)」(アプリのデータ転送ポリシーの例外) を参照してください。 #### <a name="windows-information-protection-wip-encrypted-data-in-windows-search-results----1469193---"></a>Windows 検索結果の Windows 情報保護 (WIP) 暗号化データ <!-- 1469193 --> Windows 情報保護 (WIP) ポリシーの設定により、WIP で暗号化されたデータを Windows の検索結果に含めるかどうかを制御できるようになりました。 このアプリ保護ポリシー オプションを設定するには、Windows 情報保護 (WIP) ポリシーの **[詳細設定]** で **[Allow Windows Search Indexer to search encrypted items]** \(暗号化されたアイテムの検索を Windows Search Indexer に許可する\) を選択します。 アプリの保護ポリシーは、*[Windows 10]* プラットフォームに設定し、アプリ ポリシーの **[登録状態]** は **[With enrollment]** \(登録あり\) に設定する必要があります。 詳細については、「[Allow Windows Search Indexer to search encrypted items](windows-information-protection-policy-create.md#allow-windows-search-indexer-to-search-encrypted-items)」 (暗号化されたアイテムの検索を Windows Search Indexer に許可する) を参照してください。 #### <a name="configuring-a-self-updating-mobile-msi-app----1740840---"></a>自己更新モバイル MSI アプリの構成 <!-- 1740840 --> バージョン チェック プロセスを無視するように、既知の自己更新モバイル MSI アプリを構成することができます。 この機能は、競合状態になるのを防ぐのに役立ちます。 たとえば、この種類の競合状態は、アプリ開発者によって自動更新されているアプリが、Intune によっても更新されると、発生する可能性があります。 両方が Windows クライアント上のアプリのバージョンを強制しようとして、競合が発生することがあります。 これらの自動更新される MSI アプリには、**[アプリ情報]** ブレードで **[Ignore app version]** \(アプリのバージョンを無視する\) を設定できます。 この設定を **[はい]** に切り替えると、Microsoft Intune で Windows クライアントにインストールされているアプリのバージョンは無視されます。 #### <a name="related-sets-of-app-licenses-supported-in-intune----1864117---"></a>Intune でサポートされるアプリ ライセンスの関連する設定 <!-- 1864117 --> Azure Portal 内の Intune で、UI の単一アプリ項目として、アプリ ライセンスの関連する設定がサポートされるようになりました。 さらに、ビジネス向け Microsoft Store から同期されるすべてのオフライン ライセンス アプリは単一のアプリ エントリに統合され、個別のパッケージからの展開の詳細は 1 つのエントリに移行されます。 Azure portal でアプリ ライセンスの関連するセットを表示するには、**[クライアント アプリ]** ブレードから **[アプリ ライセンス]** を選択します。 ### <a name="device-configuration"></a>デバイス構成 #### <a name="windows-information-protection-wip-file-extensions-for-automatic-encryption----1463582---"></a>Windows 情報保護 (WIP) ファイルの自動暗号化用拡張子 <!-- 1463582 --> 会社の境界内のサーバー メッセージ ブロック (SMB) 共有からコピーする場合、WIP ポリシーの定義に従って、自動的に暗号化するファイル拡張子を、Windows 情報保護 (WIP) ポリシーで指定できるようになりました。 #### <a name="configure-resource-account-settings-for-surface-hubs"></a>Surface Hub のリソース アカウント設定を構成する Surface Hub のリソース アカウント設定をリモートで構成することができるようになりました。 このリソース アカウントは、Skype または Exchange でミーティングに参加できるように認証する場合に Surface Hub で使用されます。 Surface Hub がミーティングで会議室として表示されるように、一意のリソース アカウントを作成できます。 たとえば、**会議室 B41/6233** のようなリソース アカウントです。 > [!NOTE] > - フィールドを空白のままにすると、デバイスで以前に構成された属性がオーバーライドされます。 > > - リソース アカウントのプロパティは、Surface Hub で動的に変更できます。 たとえば、パスワードのローテーションが有効かどうか、などです。 そのため、Azure コンソールの値が、デバイス上の現実に反映されるまでに時間がかかることがあります。 > > Surface Hub での現在の構成を理解するには、リソース アカウント情報をハードウェア インベントリ (既に 7 日間隔になっています) または読み取り専用プロパティに含めることができます。 リモート操作が行われた後の精度を向上させるには、操作実行直後にパラメーターの状態を取得し、Surface Hub のアカウント/パラメーターを更新できます。 ##### <a name="attack-surface-reduction"></a>攻撃の回避 |設定の名前 |設定オプション |説明 | |---------|---------|---------| |電子メールのパスワードで保護されている実行可能ファイルのコンテンツの実行|ブロック、監査、未構成|メールからのパスワードで保護されている実行可能ファイルのダウンロードを防止します。| |Advanced ransomware protection (高度なランサムウェア防止)|有効、監査、未構成|積極的なランサムウェア防止を使います。| |Flag credential stealing from the Windows local security authority subsystem (Windows ローカル セキュリティ機関サブシステムからの資格情報の盗難にフラグを設定する)|有効、監査、未構成|Windows ローカル セキュリティ機関サブシステム (lsass.exe) からの資格情報の盗難にフラグを設定します。| |Process creation from PSExec and WMI commands (PSExec および WMI コマンドからのプロセス作成)|ブロック、監査、未構成|PSExec および WMI コマンドから開始されるプロセス作成をブロックします。| |Untrusted and unsigned processes that run from USB (USB から実行された信頼されていない署名なしのプロセス)|ブロック、監査、未構成|USB から実行された信頼されていない署名なしのプロセスをブロックします。| |Executables that don’t meet a prevalence, age, or trusted list criteria (普及、経過時間、または信頼されたリストの条件を満たしていない実行可能ファイル)|ブロック、監査、未構成|普及、経過時間、または信頼されたリストの条件を満たしていない実行可能ファイルの実行をブロックします。| ##### <a name="controlled-folder-access"></a>フォルダー アクセスの制御 | 設定の名前 | 設定オプション | 説明 | |-----------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------|-------------| | フォルダーの保護 (実装済み) | 未構成、有効、監査のみ (実装済み)<br><br> <strong>新規</strong><br>Block disk modification (ディスクの変更をブロックする)、Audit disk modification (ディスクの変更を監査する) | | ファイルおよびフォルダーを、悪意のあるアプリによる未承認の変更から保護します。<br><br>**有効**: 信頼されていないアプリによる、保護されたフォルダー内のファイルの変更または削除、およびディスク セクターへの書き込みを、禁止します。<br><br> **Block disk modification only (ディスクの変更のみをブロック)**:<br>信頼されていないアプリによるディスク セクターへの書き込みをブロックします。 信頼されていないアプリは、保護されたフォルダー内のファイルを変更または削除することはできます。 #### <a name="additions-to-system-security-settings-for-windows-10-and-later-compliance-policies---1704133--"></a>Windows 10 以降のコンプライアンス ポリシーのシステム セキュリティ設定への追加 <!--1704133--> ファイアウォールと Windows Defender ウイルス対策の要求など、Windows 10 のコンプライアンス設定への追加機能が使用可能になりました。 ### <a name="intune-apps"></a>Intune アプリ #### <a name="support-for-offline-apps-from-the-microsoft-store-for-business---1222672--"></a>ビジネス向け Microsoft ストアから入手したオフライン アプリのサポート <!--1222672--> ビジネス向け Microsoft ストアから購入したオフライン アプリが Azure Portal と同期されまるようになりました。 その後、これらのアプリをデバイス グループまたはユーザー グループに展開できます。 オフライン アプリは、ストアからではなく Intune でインストールします。 #### <a name="prevent-end-users-from-manually-adding-or-removing-accounts-in-the-work-profile----1728700---"></a>エンド ユーザーが作業プロファイルのアカウントを手動で追加または削除できないようにする <!-- 1728700 --> Gmail アプリを Android for Work プロファイルに展開するとき、Android for Work デバイス制限プロファイルで **[Add and remove accounts]\(アカウントを追加および削除する\)** 設定を使うことで、エンド ユーザーが作業プロファイルのアカウントを手動で追加または削除できないようにすることができるようになりました。 <!-- ########################## --> ## <a name="january-2018"></a>2018 年 1 月 ### <a name="device-enrollment"></a>デバイスの登録 #### <a name="alerts-for-expired-tokens-and-tokens-that-will-soon-expire----1639263---"></a>期限切れトークンと有効期限が近いトークンのアラート <!-- 1639263 --> 有効期限が切れているトークンと、有効期限が近づいているトークンのアラートが概要ページに表示されるようになりました。 1 つのトークンのアラートをクリックすると、そのトークンの詳細ページに移動します。 複数のトークンのアラートをクリックすると、トークンのステータスが表示された全トークンの一覧に移動します。 管理者は、有効期限が来る前にトークンを更新する必要があります。 ### <a name="device-management"></a>デバイス管理 #### <a name="remote-erase-command-support-for-macos-devices----1438084---"></a>macOS デバイスのリモートの "消去" コマンド サポート <!-- 1438084 --> 管理者は、macOS デバイスの消去コマンドをリモートで発行できます。 > [!IMPORTANT] > 消去コマンドは、元に戻すことができないため、使用する際は注意が必要です。 消去コマンドでは、オペレーティング システムを含むすべてのデータが、デバイスから削除されます。 また、そのデバイスも、Intune 管理から削除されます。 ユーザーに対して警告は表示されません。また、コマンドを発行すると、消去は即座に実行されます。 6 桁の回復用 PIN を構成する必要があります。 この PIN を使用すると、消去されたデバイスのロックが解除され、オペレーティング システムの再インストールが開始されます。 PIN は、消去が開始されると、Intune のデバイスの概要ブレードのステータス バーに表示されます。 消去が完了するまでの間、PIN はずっと表示されます。 消去が完了したら、デバイスは Intune 管理から完全に削除されます。 デバイスを復元する人が誰であっても、そのデバイスを使用できるように、回復用 PIN は必ず記録するようにしてください。 #### <a name="revoke-licenses-for-an-ios-volume-purchasing-program-token----820870---"></a>iOS Volume Purchasing Program トークンのライセンスの取り消し <!-- 820870 --> 特定の VPP トークンのすべての iOS Volume Purchasing Program (VPP) アプリのライセンスを取り消すことができます。 ### <a name="app-management"></a>アプリ管理 #### <a name="revoking-ios-volume-purchase-program-apps-----820863---"></a>iOS Volume-Purchase Program アプリの取り消し <!-- 820863 --> 1 つ以上の iOS Volume-Purchase Program (VPP) アプリがインストールされた特定のデバイスでは、そのデバイスで関連付けられているデバイス ベース アプリのライセンスを取り消すことができます。 アプリのライセンスを取り消しても、関連する VPP アプリがデバイスからアンインストールされるわけではありません。 VPP アプリをアンインストールするには、割り当てアクションを **[アンインストール]** に変更する必要があります。 詳細については、「[Volume Purchase Program で購入した iOS アプリを Microsoft Intune で管理する方法](vpp-apps-ios.md)」をご覧ください。 #### <a name="assign-office-365-mobile-apps-to-ios-and-android-devices-using-built-in-app-type----1332318---"></a>組み込み型のアプリを利用し、iOS デバイスまたは Android デバイスに Office 365 モバイル アプリを割り当てる <!-- 1332318 --> **組み込み**型のアプリであれば、Office 365 アプリを作成し、管理している iOS または Android デバイスに割り当てることが簡単にできます。 これらのアプリには、Word、Excel、PowerPoint、OneDrive などの 0365 アプリがあります。 アプリの種類に特定のアプリを割り当て、アプリ情報構成を編集できます。 #### <a name="including-and-excluding-app-assignment-based-on-groups----1406920---"></a>グループに基づくアプリ割り当ての追加と除外 <!-- 1406920 --> アプリの割り当て時、および割り当ての種類の選択後に、含めるグループと、除外するグループを選択できます。 ### <a name="device-configuration"></a>デバイス構成 #### <a name="you-can-assign-an-application-configuration-policy-to-groups-by-including-and-excluding-assignments-----1480316---"></a>割り当てを含めたり除外したりしてグループにアプリケーション構成ポリシーを割り当てることができる <!-- 1480316 --> 含める割り当てと除外する割り当ての組み合わせを使って、ユーザーとデバイスのグループにアプリケーション構成ポリシーを割り当てることができます。 割り当ては、グループのカスタム選択または仮想グループとして選べます。 仮想グループは、**すべてのユーザー**、**すべてのデバイス**、または**すべてのユーザーとすべてのデバイス**を含むことができます。 #### <a name="support-for-windows-10-edition-upgrade-policy------903672archived-1119689---"></a>Windows 10 エディション アップグレード ポリシーのサポート <!-- 903672(archived), 1119689 --> Windows 10 デバイスを Windows 10 Education、Windows 10 Education N、Windows 10 Professional、Windows 10 Professional N、Windows 10 Professional Education、Windows 10 Professional Education N にアップグレードする Windows 10 エディション アップグレード ポリシーを作成できます。Windows 10 エディションのアップグレードについては、「[Windows 10 エディションのアップグレードを構成する方法](edition-upgrade-configure-windows-10.md)」をご覧ください。 #### <a name="conditional-access-policies-for-intune-is-only-available-from-the-azure-portal-----1737088-1634311---"></a>Intune の条件付きアクセス ポリシーの利用可能場所が Azure Portal のみに <!-- 1737088 1634311 --> このリリース以降では、[Azure Portal](https://portal.azure.com) の **[Azure Active Directory]** > **[条件付きアクセス]** から条件付きアクセス ポリシーを構成および管理する必要があります。 便宜上、**[Intune]** > **[条件付きアクセス]** の、Azure Portal 内にある Intune からこのブレードにアクセスすることもできます。 #### <a name="updates-to-compliance-emails---1637547---"></a>コンプライアンスのメールに対する変更 <!--1637547 --> コンプライアンス違反のデバイスを報告するメールが送信される際、そのコンプライアンス違反のデバイスの詳細が含まれるようになります。 ### <a name="intune-apps"></a>Intune アプリ #### <a name="new-functionality-for-the-resolve-action-for-android-devices---1583480--"></a>Android デバイスの "解決" アクションの新機能 <!--1583480--> Android 用ポータル サイト アプリは、[デバイス暗号化の問題](/intune-user-help/encrypt-your-device-android)を解決するために、**[デバイス設定の更新]** の "解決" アクションを拡張しています。 #### <a name="remote-lock-available-in-company-portal-app-for-windows-10---676506--"></a>Windows 10 用の Intune ポータル サイトで利用できるリモート ロック <!--676506--> エンドユーザーは、Windows 10 向けポータル サイト アプリから自分のデバイスをリモートでロックできるようになりました。 この機能はエンド ユーザーがアクティブに使用しているローカル デバイスには表示されません。 #### <a name="easier-resolution-of-compliance-issues-for-the-company-portal-app-for-windows-10---676546--"></a>Windows 10 でポータル サイト アプリのコンプライアンスの問題解決が簡単に <!--676546--> Windows デバイスを持つエンド ユーザーは、ポータル サイト アプリのコンプライアンス非対応の理由をタップできます。 可能であれば、問題を解決するのに適切な、設定アプリ内の場所がエンド ユーザーに直接表示されます。 <!-- ########################## --> ## <a name="december-2017"></a>2017 年 12 月 ### <a name="device-configuration"></a>デバイス構成 #### <a name="new-automatic-redeployment-setting----1469168---"></a>新しい自動再配置設定 <!-- 1469168 --> **自動再展開**設定では、管理権限を持つユーザーが、デバイス ロック画面で **CTRL + Win + R** を使用してすべてのユーザー データとユーザー設定を削除できます。 このデバイスは自動的に再構成され、管理対象に再登録されます。 この設定には、[Windows 10] -> [デバイスの制限] -> [全般] -> [自動再展開] でアクセスできます。 詳細については、[Intune での Windows 10 のデバイス制限設定](device-restrictions-windows-10.md#general)に関するページをご覧ください。 #### <a name="support-for-additional-source-editions-in-the-windows-10-edition-upgrade-policy-----903672--1119689---"></a>Windows 10 エディションのアップグレード ポリシーにおける、その他のソース エディションのサポート <!-- 903672, 1119689 --> Windows 10 エディションのアップグレード ポリシーを使用して、Windows 10 の他のエディション (Windows 10 Pro、Windows 10 Pro Education、Windows 10 Cloud など) からアップグレードできるようになりました。 以前のリリースでは、サポートされるエディションのアップグレードのパスは、今よりも限定されていました。 詳細については、[Windows 10 エディションのアップグレードを構成する方法](edition-upgrade-configure-windows-10.md)に関するページをご覧ください。 #### <a name="new-windows-defender-security-center-wdsc-device-configuration-profile-settings----1335507---"></a>新しい Windows Defender セキュリティ センター (WDSC) デバイス構成プロファイルの設定 <!-- 1335507 --> Intune の **Windows Defender セキュリティ センター**という名前の Endpoint Protection に、デバイス構成プロファイル設定の新しいセクションが追加されます。 IT 管理者は、Windows Defender セキュリティ センター アプリで、エンドユーザーがどの機能にアクセス可能かを構成できます。 IT 管理者が Windows Defender セキュリティ センター アプリで、ある機能を非表示にすると、ユーザーのデバイスで、その機能に関連するすべての通知が非表示になります。 管理者が Windows Defender セキュリティ センター デバイス構成プロファイル設定で非表示にできる機能は、以下のとおりです。 - ウイルスと脅威の防止 - デバイスのパフォーマンスと正常性 - ファイアウォールとネットワーク保護 - アプリとブラウザー コントロール - ファミリー オプション IT 管理者は、ユーザーが受け取る通知をカスタマイズすることもできます。 たとえば、ユーザーが WDSC に表示される機能で生成されたすべての通知を受け取るか、または重要な通知のみを受け取るかを構成できます。 重要度の低い通知には、Windows Defender Antivirus のアクティビティに関する定期的な概要や、スキャン完了時の通知があります。 その他のすべての通知は重要とみなされます。 さらに、通知の内容自体をカスタマイズすることもできます。たとえば、IT 担当の連絡先情報を、ユーザーのデバイスに表示される通知に組み込むなどです。 #### <a name="multiple-connector-support-for-scep-and-pfx-certificate-handling----1361755---"></a>SCEP の複数コネクタ サポートと PFX 証明書処理 <!-- 1361755 --> オンプレミス NDES コネクタを使用してデバイスに証明書を配信するお客様は、1 つのテナントに複数のコネクタを構成できるようになりました。 この新しい機能では、次のシナリオがサポートされています。 - **高可用性** 各 NDES コネクタは、Intune から証明書の要求を取得します。 1 つの NDES コネクタがオフラインになっても、その他のコネクタは要求の処理を続行できます。 #### <a name="customer-subject-name-can-use-aaddeviceid-variable-----1468599---"></a>カスタム サブジェクト名で AAD_DEVICE_ID 変数が使用可能に <!-- 1468599 --> Intune で SCEP 証明書プロファイルを作成する際、カスタム サブジェクト名の作成時に AAD_DEVICE_ID 変数を使用できるようになりました。 この SCEP プロファイルを使用して証明書が要求されると、証明書の要求を行っているデバイスの AAD デバイス ID が、この変数に置き換わります。 ### <a name="device-management"></a>デバイス管理 #### <a name="manage-jamf-enrolled-macos-devices-with-intunes-device-compliance-engine----1592747---"></a>Intune のデバイス コンプライアンス エンジンを使用した Jamf に登録された macOS デバイスの管理 <!-- 1592747 --> Jamf を使って、macOS デバイスの状態情報を Intune に送信できるようになりました。情報はその後、Intune コンソールで定義されたポリシーに準拠しているかどうかが評価されます。 条件付きアクセスでは、デバイスのコンプライアンス対応状態や、その他の条件 (場所やユーザー リスクなど) に基づいて、Azure AD に接続されたクラウド アプリケーションやオンプレミス アプリケーション (Office 365 など) にアクセスする macOS デバイスにコンプライアンスを適用します。 [Jamf 統合の設定](conditional-access-integrate-jamf.md)と [Jamf で管理されたデバイスのコンプライアンスの強制](conditional-access-assign-jamf.md)について、詳細をご覧ください。 #### <a name="new-ios-device-action------1424701---"></a>新しい iOS デバイス アクション <!-- 1424701 --> iOS 10.3 監視下のデバイスをシャット ダウンできるようになりました。 このアクションでは、エンド ユーザーへの警告なしにデバイスが即時シャットダウンされます。 **シャット ダウン (監視モードのみ)** アクションは、**デバイス** ワークロードでデバイスを選択した場合に、デバイス プロパティに表示されます。 #### <a name="disallow-datetime-changes-to-samsung-knox-devices----1468103---"></a>Samsung KNOX デバイスへの日付および時刻の変更禁止 <!-- 1468103 --> Samsung KNOX デバイスでの日付と時刻の変更をブロックできる機能が新たに追加されました。 この機能は、**[デバイス構成プロファイル]** > **[デバイスの制限 (Android)]** > **[全般]** にあります。 #### <a name="surface-hub-resource-account-supported----1566442----"></a>サポートされる Surface Hub リソース アカウント <!-- 1566442 --> Surface Hub に関連付けられたリソース アカウントを、管理者が定義、更新できる新しいデバイス アクションが追加されました。 このリソース アカウントは、Skype または Exchange でミーティングに参加できるように認証する場合に Surface Hub で使用されます。 Surface Hub がミーティングで会議室として表示されるように、一意のリソース アカウントを作成できます。 たとえば、リソース アカウントは*会議室 B41/6233* と表示されます。 Surface Hub のリソース アカウント (デバイス アカウントと呼ばれる) は通常、会議室の場所や、他のリソース アカウントのパラメーターをいつ変更するかを構成するのに必要となります。 管理者はデバイスでリソース アカウントを更新する場合、デバイスに関連付けられた現在の Active Directory または Azure Active Directory 資格情報を指定する必要があります。 デバイスでパスワードのローテーションがオンに設定されている場合には、管理者は Azure Active Directory に移動してパスワードを検索する必要があります。 > [!NOTE] > すべてのフィールドがまとめて送信され、以前に構成されたすべてのフィールドを上書きします。 また、空のフィールドも既存のフィールドを上書きします。 管理者が行える構成は次のとおりです。 - **リソース アカウント** - **Active Directory ユーザー** Domainname\username、またはユーザー プリンシパル名: user@domainname.com - **パスワード** - **オプションのリソース アカウント パラメーター** (指定されたリソース アカウントを使用して設定する必要があります) - **パスワードのローテーション期間** アカウントのパスワードは、セキュリティ上の理由から、毎週 Surface Hub によって自動的に更新されます。 これを有効にした後にパラメーターを構成するには、最初に Azure Active Directory のアカウントのパスワードをリセットする必要があります。 - **SIP (セッション開始プロトコル) アドレス** 自動検出が失敗した場合にのみ使用されます。 - **電子メール** デバイス アカウントまたはリソース アカウントの電子メール アドレス。 - **Exchange サーバー** 自動検出が失敗した場合のみ必要です。 - **予定表の同期** 予定表の同期と他の Exchange サーバー サービスが有効かどうかを指定します。 たとえば、ミーティングの同期などです。 #### <a name="install-office-apps-on-macos-devices----1494311---"></a>macOS デバイスでの Office アプリのインストール <!-- 1494311 --> macOS デバイスで Office アプリをインストールできるようになりました。 この新しい種類のアプリでは、Word、Excel、PowerPoint、Outlook、OneNote をインストールできます。 これらのアプリには Microsoft AutoUpdate (MAU) も付属しており、アプリを安全かつ最新に保つことができます。 ### <a name="app-management"></a>アプリ管理 #### <a name="delete-an-ios--volume-purchasing-program-token----820879---"></a>iOS Volume Purchasing Program トークンのライセンスの削除 <!-- 820879 --> コンソールを使用して、iOS Volume Purchasing Program (VPP) トークンを削除できます。 VPP トークンのインスタンスが重複している場合に、これが必要になることがあります。 ### <a name="intune-apps"></a>Intune アプリ ### <a name="role-based-access-control"></a>ロールベースのアクセス制御 #### <a name="a-new-entity-collection-named-current-user-is-limited-to-currently-active-user-data----1667026---"></a>現在のユーザーという名前の新しいエンティティ コレクションは、現在アクティブなユーザー データに限られています <!-- 1667026 --> **ユーザー** エンティティ コレクションには、社内のすべての Azure Active Directory (Azure AD) ユーザーと割り当てられているライセンスが表示されます。 たとえば、ユーザーが Intune に追加され、過去 1 か月の過程で削除されたとします。 このユーザーがレポートの時点では存在しない一方で、ユーザーと状態はデータに存在します。 データ内のユーザーの履歴における存在の期間を示すレポートを作成できます。 これに対し、新しい**現在のユーザー** エンティティ コレクションには、削除されていないユーザーのみが含まれています。 **現在のユーザー** エンティティ コレクションには、現在アクティブなユーザーのみが含まれています。 **現在のユーザー** エンティティ コレクションの詳細については、「[現在のユーザー エンティティのリファレンス](reports-ref-current-user.md)」をご覧ください。 ### <a name="updated-graph-apis----1736360---"></a>Graph API の変更 <!-- 1736360 --> このリリースでは、Intune のベータ版の Graph API にいくつか変更を加えました。 詳細については、[Graph API の変更ログ](https://developer.microsoft.com/graph/docs/concepts/changelog)のページ (毎月更新) をご覧ください。 ### <a name="monitor-and-troubleshoot"></a>監視とトラブルシューティング #### <a name="intune-supports-windows-information-protection-wip-denied-apps----1479103---"></a>Intune では Windows Information Protection (WIP) で拒否されたアプリがサポートされる <!-- 1479103 --> 拒否されたアプリを Intune で指定することができます。 アプリが拒否された場合、企業の情報へのアクセスがブロックされます。これは事実上、許可されたアプリ リストの反対です。 詳しくは、[Windows 情報保護の推奨される拒否リスト](https://docs.microsoft.com/windows/client-management/mdm/applocker-csp?f=255&MSPPError=-2147217396#recommended-deny-list-for-windows-information-protection)を参照してください。 <!-- ########################## --> ## <a name="november-2017"></a>2017 年 11 月 ### <a name="troubleshoot-enrollment-issues-----746324---"></a>登録に関する問題をトラブルシューティングする <!-- 746324 --> **トラブルシューティング** ワークスペースに、ユーザーの登録に関する問題が表示されるようになりました。 問題に関する詳細と推奨される修復手順は、管理者およびヘルプ デスクのオペレーターが問題をトラブルシューティングするのに役立ちます。 登録に関する特定の問題はキャプチャされず、一部のエラーには推奨される修復方法がない場合があります。 ### <a name="group-assigned-enrollment-restrictions----747598---"></a>グループ割り当て登録制限 <!-- 747598 --> Intune 管理者は[ユーザー グループに対してカスタムの登録制限として [デバイスの種類] と [デバイスの上限数] を作成できるようになりました](enrollment-restrictions-set.md)。 Intune Azure ポータルで、制限タイプごとに最大 25 個のインスタンスを作成できます。作成したインスタンスはユーザー グループに割り当てることができます。 グループに割り当てられた制限は既定の制限をオーバーライドします。 制限タイプのすべてのインスタンスは、厳密に順序付けられた一覧で保守管理されます。 この順序により、競合解決の優先度の値が決まります。 複数の制限インスタンスの影響を受けるユーザーは、優先度の値が最も高いインスタンスによって制限されます。 インスタンスの優先度は、一覧内の別の位置にドラッグすることによって変更できます。 Android For Work 登録メニューから登録制限メニューに Android For Work 設定が移行されたとき、この機能が使えるようになります。 この移行には数日かかる場合があります。11 月リリースのその他の部分に関してアカウントがアップグレードされた後に、登録制限のグループ割り当てが有効になる場合があります。 ### <a name="support-for-multiple-network-device-enrollment-service-ndes-connectors----1528104---"></a>複数のネットワーク デバイス登録サービス (NDES) コネクタのサポート <!-- 1528104 --> NDES を利用すれば、ドメイン資格情報なしでモバイル デバイスを実行し、Simple Certificate Enrollment Protocol (SCEP) に基づいて証明書を取得できます。 今回の更新で、複数の NDES コネクタがサポートされるようになりました。 ### <a name="manage-android-for-work-devices-independently-from-android-devices----1490731-eeready--"></a>Android デバイスとは別に Android for Work デバイスを管理する <!-- 1490731 EEready--> Intune は、Android プラットフォームに依存することなく、Android for Work デバイスの登録を管理します。 この設定は、**[デバイスの登録]**、 > **[登録制限]**、 > **[デバイスの種類の制限]** で管理されます。 (以前の場所は **[デバイス登録]**、 > **[Android for Work への登録]**、 > **[Android for Work の登録設定]** でした。) 既定では、Android for Work デバイス設定は Android デバイスの設定と同じになります。 ただし、Android for Work 設定を変更した後は、同じではなくなります。 個人の Android for Work 登録をブロックした場合、会社の Android デバイスのみを Android for Work として登録できます。 新しい設定を使用する場合、次の点を考慮してください。 #### <a name="if-you-have-never-previously-onboarded-android-for-work-enrollment"></a>以前に Android for Work 登録をオンボードしたことがない 新しい Android for Work プラットフォームは、既定の [デバイスの種類の制限] でブロックされます。 この機能をオンボードした後は、デバイスを Android for Work に登録できます。 そのためには、既定値を変更するか、新しい [デバイスの種類の制限] を作成して既定の [デバイスの種類の制限] に代えます。 #### <a name="if-you-have-onboarded-android-for-work-enrollment"></a>Android for Work 登録をオンボードした 以前にオンボードしている場合、状況は選んだ設定によって変わります。 | Setting | 既定の [デバイスの種類の制限] の Android for Work の状態 | 注 | | --- | --- | --- | | **すべてのデバイスを Android として管理する** | [ブロック済み] | すべての Android デバイスを Android for Work なしで登録する必要があります。 | | **サポートされているデバイスを Android for Work として管理する** | 許可済み | Android for Work 対応のすべての Android デバイスを Android for Work に登録する必要があります。 | | **これらのグループに所属するユーザーのサポートされているデバイスのみを Android for Work として管理する** | [ブロック済み] | 既定値をオーバーライドする別個の [デバイスの種類の制限] ポリシーが作成されました。 このポリシーによって、以前に選択したグループで Android for Work 登録が許可されます。 選択されたグループ内のユーザーには、Android for Work デバイスの登録が引き続き許可されます。 その他すべてのユーザーには、Android for Work の登録が禁止されます。 | いずれの場合でも、意図した規制が維持されます。 自分の環境で Android for Work のグローバル許可またはグループ別許可を維持するための操作は必要ありません。 ### <a name="google-play-protect-support-on-android----908720---"></a>Android の Google Play Protect サポート <!-- 908720 --> Android Oreo のリリースに伴い、セキュリティで保護されたアプリおよび Android イメージをユーザーや組織が実行できる、Google Play Protect という一連のセキュリティ機能が Google より提供されました。 Intune では、SafetyNet リモート構成証明をはじめとした Google Play Protect の各機能をサポートするようになりました。 管理者は、Google Play Protect が構成され正常な状態であることが求められるコンプライアンス ポリシー要件を設定できます。 **[SafetyNet デバイスの構成証明]** 設定では、デバイスが正常な状態であり危険にさらされていないことを確認するために、デバイスを Google サービスに接続する必要があります。 管理者は、インストール済みのアプリが Google Play 開発者サービスによって検証されることを必須にする、Android for Work の構成プロファイル設定を設定することもできます。 デバイスが Google Play Protect の要件に準拠していない場合、条件付きアクセスでは、ユーザーが企業リソースにアクセスできなくなる可能性があります。 - 「[デバイスのコンプライアンス ポリシーを作成して Google Play Protect を有効にする方法](https://docs.microsoft.com/intune/compliance-policy-create-google-play-protect)」を参照してください。 ### <a name="text-protocol-allowed-from-managed-apps----1414050----"></a>管理対象アプリから許可されるテキスト プロトコル <!-- 1414050 --> Intune App SDK によって管理されているアプリは、SMS メッセージを送信できます。 ### <a name="app-install-report-updated-to-include-install-pending-status----1249446---"></a>インストール保留中の状態を含むように更新されたアプリ インストール レポート <!-- 1249446 --> **[クライアント アプリ]** ワークロードの **[アプリ]** 一覧から表示できるアプリ別の **[アプリ インストールの状態]** レポートでは、ユーザーとデバイスについて **[インストール保留中]** カウントが表示されるようになりました。 ### <a name="ios-11-app-inventory-api-for-mobile-threat-detection----1391759---"></a>モバイルの脅威を検出するための iOS 11 アプリ インベントリ API <!-- 1391759 --> Intune は個人のデバイスと会社所有のデバイスの両方からアプリ インベントリ情報を収集し、Lookout for Work など、MTD (Mobile Threat Detection/モバイル脅威検出) プロバイダーが取得できるようにします。 iOS 11 以降のデバイスを所有するユーザーからアプリ インベントリを収集できます。 **アプリ インベントリ** iOS 11 以降を内蔵した会社所有デバイスと個人所有デバイスの両方からのインベントリが MTD サービス プロバイダーに送信されます。 アプリ インベントリのデータ: - アプリ ID - アプリ バージョン - アプリ バージョン (短い形式) - アプリ名 - アプリ バンドル サイズ - アプリの動的サイズ - アプリの有効性が確認されているかどうか - アプリが管理されているかどうか ### <a name="migrate-hybrid-mdm-users-and-devices-to-intune-standalone----1463747-wnready---"></a>ハイブリッド MDM のユーザーとデバイスを Intune スタンドアロンに移行する <!-- 1463747 wnready --> ハイブリッド MDM から Azure Portal 内の Intune にユーザーとそのデバイスを移動するための新しいプロセスとツールが利用可能になりました。これにより、次の操作を行うことができます。 - Configuration Manager コンソールから Azure Portal 内の Intune にポリシーとプロファイルをコピーする - ユーザーのサブセットを Azure Portal 内の Intune に移動し、残りのユーザーをハイブリッド MDM で保持したままにする - 再登録せずに、Azure Portal 内の Intune にデバイスを移行する 詳しくは、「[ハイブリッド MDM のユーザーとデバイスを Intune スタンドアロンに移行する](https://docs.microsoft.com/sccm/mdm/deploy-use/migrate-hybridmdm-to-intunesa)」を参照してください。 ### <a name="on-premises-exchange-connector-high-availability-support-----676614---"></a>オンプレミスの Exchange Connector の高可用性のサポート <!-- 676614 --> Exchange Connector によって、指定の CAS で Exchange への接続が作成された後、コネクタで別の CAS も検出できるようになりました。 メインの CAS が利用できなくなった場合、再度利用可能になるまで、コネクタが別の CAS (ある場合) にフェールオーバーします。 詳細については、「[オンプレミスの Exchange Connector の高可用性のサポート](exchange-connector-install.md#on-premises-exchange-connector-high-availability-support)」をご覧ください。 ### <a name="remotely-restart-ios-device-supervised-only----1424595---"></a>iOS デバイスをリモート再起動する (監視モードのみ) <!-- 1424595 --> デバイス アクションを利用し、監視されている iOS 10.3 以降のデバイスの再起動をトリガーできるようになりました。 デバイス再起動アクションの利用方法については、「[Intune でデバイスをリモートで再起動する](device-restart.md)」を参照してください。 > [!Note] > このコマンドは、監視されているデバイスと**デバイス ロック** アクセス権を要求します。 デバイスがすぐに再起動します。 パスコードでロックされている iOS デバイスが再起動後に Wi-Fi ネットワークに再び参加することはありません。再起動後、サーバーと通信できないことがあります。 ### <a name="single-sign-on-support-for-ios----1333645---"></a>iOS のシングル サインオン サポート <!-- 1333645 --> iOS ユーザーのためにシングル サインオンを使用できます。 シングル サインオン ペイロードのユーザー資格情報を探すようにプログラミングされている iOS アプリは、このペイロード構成更新で機能します。 UPN と Intune デバイス ID を利用し、プリンシパル名と領域を構成することもできます。 詳しくは、「[Configure Intune for iOS device single sign-on](sso-ios.md)」 (iOS 用 Intune のデバイス シングル サインオンを構成する) を参照してください。 ### <a name="add-find-my-iphone-for-personal-devices---1427287--"></a>個人デバイスの "iPhone を探す" を追加 <!--1427287--> iOS デバイスのアクティベーション ロックがオンになっているかどうかを表示できるようになりました。 この機能は以前、クラシック ポータルの Intune にありました。 ### <a name="remotely-lock-managed-macos-device-with-intune----1437691---"></a>管理されている macOS デバイスを Intune でリモート ロックする <!-- 1437691 --> 紛失した macOS デバイスをロックできます。6 桁の回復用 PIN を設定できます。 ロックされているとき、別のデバイス アクションが送信されるまで、**デバイス概要**ブレードにその PIN が表示されます。 詳細については、「[マネージド デバイスを Intune でリモートからロックする](device-remote-lock.md)」を参照してください。 ### <a name="new-scep-profile-details-supported----1559808---"></a>サポートされる新しい SCEP プロファイル詳細 <!-- 1559808 --> Windows、iOS、macOS、Android プラットフォームで SCEP プロファイルを作成するとき、管理者は追加設定を設定できるようになりました。 管理者は、IMEI、シリアル番号、あるいはサブジェクト名の形式の電子メールなど、一般名を設定できます。 <!-- #### Update to what device details your company may see -1616825 The Company Portal app for Android can now use geofencing to protect access to company resources. It uses network details such as IP address, default gateway address, and Domain Name System (DNS) to determine whether to allow access to protected company resources. --> ### <a name="retain-data-during-a-factory-reset----1588489---"></a>工場出荷時の設定へのリセット中にデータを保持する <!--1588489 --> Windows 10 バージョン 1709 以降を工場出荷時の設定にリセットすると、新しい機能が使用できるようになります。 工場出荷時の設定へのリセット中、デバイス登録やプロビジョニングされているその他のデータを保持するかどうかを管理者は指定することができます。 工場出荷時の状態にリセットしても、次のデータが維持されます。 - デバイスに関連付けられているユーザー アカウント - コンピューターの状態 (ドメイン参加、Azure Active Directory に参加) - MDM 登録 - OEM でインストールされたアプリ (ストア アプリと Win32 アプリ) - ユーザー プロファイル - ユーザー プロファイル以外のユーザー データ - ユーザー自動ログオン 次のデータは保持されません。 - ユーザー ファイル - ユーザーがインストールしたアプリ (ストア アプリと Win32 アプリ) - 初期値ではないデバイス設定 ### <a name="window-10-update-ring-assignments-are-displayed----1621837---"></a>Windows 10 更新プログラム リング割り当てが表示される <!-- 1621837 --> **トラブルシューティング**時、表示しているユーザーに関して、Windows 10 更新プログラム リング割り当てを表示することができます。 ### <a name="windows-defender-advanced-threat-protection-reporting-frequency-settings-----1455974----"></a>Windows Defender Advanced Threat Protection の報告頻度設定 <!-- 1455974 --> Windows Defender Advanced Threat Protection (WDATP) サービスを利用するとき、管理者はマネージド デバイスの報告頻度を管理できます。 新しい **[テレメトリの報告頻度を早める]** オプションを利用すると、WDATP はデータを収集し、さらに頻繁にリスクを評価します。 報告の既定値で速度とパフォーマンスが最適化されます。 報告の頻度を増やすことは、リスクの高いデバイスの場合に有益となります。 この設定は **[デバイス構成]** の **[Windows Defender ATP]** プロファイルにあります。 ### <a name="audit-updates----1412961---"></a>監査更新 <!-- 1412961 --> Intune の監査機能により、Intune に関連する変更操作が記録されます。 あらゆる作成操作、更新操作、削除操作、リモート タスク操作が記録され、1 年間保存されます。 Azure Portal では、ワークロード別の監査データを過去 30 日分表示できます。データの絞り込みも可能です。 対応する Graph API により、前年に格納された監査データを取得できます。 監査は **[モニター]** グループの下にあります。 ワークロード別に **[監査ログ]** メニュー項目があります。 ### <a name="company-portal-app-for-macos-is-available---1541700--"></a>macOS 用ポータル サイト アプリ提供開始 <!--1541700--> macOS での Intune ポータル サイトのエクスペリエンスが更新されました。ユーザーが登録済みのすべてのデバイスで必要となるすべての情報とコンプライアンス通知が明確に表示されるように最適化されました。 また、いったん Intune ポータル サイトをデバイスに展開すると、macOS 用 Microsoft 自動更新から更新プログラムが提供されるようになります。 macOS デバイスから Intune ポータル サイトにログインすることで、新しい macOS 用 Intune ポータル サイトをダウンロードできます。 ### <a name="microsoft-planner-is-now-part-of-the-mobile-app-management-mam-list-of-approved-apps-----1248473---"></a>Microsoft Planner が承認済みアプリのモバイル アプリ管理 (MAM) リストの一部に <!-- 1248473 --> iOS および Android 用の Microsoft Planner アプリが、承認済みアプリのモバイル アプリ管理 (MAM) の一部となりました。 このアプリは、Azure Portal の Intune App Protection ブレードからすべてのテナントに対して構成できます。 - 詳細については、[承認済みアプリの MAM リスト](https://www.microsoft.com/cloud-platform/microsoft-intune-apps)に関するページをご覧ください。 ### <a name="per-app-vpn-requirement-update-frequency-on-ios-devices------1547061---"></a>iOS デバイスでのアプリごとの VPN 要件の更新頻度 <!-- 1547061 --> 管理者が iOS デバイス上のアプリでアプリごとの VPN 要件を削除できるようになりました。影響を受けるデバイスでは、次回の Intune チェックイン後、通常 15 分以内に反映されます。 ### <a name="support-for-system-center-operations-manager-management-pack-for-exchange-connector----885457---"></a>Exchange Connector 用 System Center Operations Manager 管理パックのサポート <!-- 885457 --> Exchange Connector 用 System Center Operations Manager (SCOM) 管理パックを Exchange Connector のログ解析に利用できるようになります。 この機能により、問題のトラブルシューティングが必要な場合に、別の方法でサービスを監視できるようになります。 ### <a name="co-management-for-windows-10-devices-----1243445---"></a>Windows 10 デバイスの共同管理 <!-- 1243445 --> 共同管理は、従来の管理から最新の管理への橋渡しとなるソリューションであり、段階的なアプローチを使って移行する方向を提示します。 基本的に、共同管理は、Windows 10 デバイスを Configuration Manager と Microsoft Intune で同時に管理すると共に、Active Directory (AD) と Azure Active Directory (Azure AD) に同時に参加させることができるソリューションです。 この構成は、一度にすべてを移行できない組織が適切なペースで時間をかけて最新化するパスを提供します。 ### <a name="restrict-windows-enrollment-by-os-version----245498---"></a>OS のバージョンによる Windows 登録の制限 <!-- 245498 --> Intune 管理者は、デバイス登録に関して、Windows 10 の最小バージョンと最大バージョンを指定できるようになりました。 これらの制限は **[プラットフォーム構成]** ブレードで設定できます。 Intune では、Windows 8.1 の PC とスマートフォンを引き続き登録できます。 ただし、下限と上限を設定できるのは Windows 10 のバージョンだけです。 8.1 デバイスの登録を許可するには、下限を空のままにします。 ### <a name="alerts-for-windows-autopilot-unassigned-devices-----1631236---"></a>Windows Autopilot の未割り当てデバイスのアラート <!-- 1631236 --> **[Microsoft Intune]**、**[デバイス登録]**、**[概要]** ページには、Windows AutoPilot の未割り当てデバイスの新しいアラートがあります。 このアラートでは、AutoPilot プログラムからのデバイスで、AutoPilot Deployment プロファイルが割り当てられていないデバイスの数が示されます。 アラート内の情報を利用してプロファイルを作成し、未割り当てデバイスに割り当てます。 アラートをクリックすると、Windows AutoPilot の完全一覧とそれらに関する詳細が表示されます。 詳細については、「[Windows AutoPilot Deployment プログラムを使用して Windows デバイスを登録する](https://docs.microsoft.com/intune/enrollment-autopilot)」を参照してください。 ### <a name="refresh-button-for-devices-list-------1333581---"></a>デバイス一覧の [更新] ボタン <!-- 1333581 --> デバイス一覧は自動的に更新されないため、新しい [更新] ボタンを利用し、一覧に表示されるデバイスを更新できます。 ### <a name="support-for-symantec-cloud-certification-authority-ca-----1333638---"></a>Symantec クラウド証明機関 (CA) のサポート <!-- 1333638 --> Intune は Symantec クラウド CA をサポートするようになり、Intune Certificate Connector は Symantec クラウド CA から Intune でマネージド デバイスに PKCS 証明書を発行できます。 Microsoft 証明機関 (CA) で Intune Certificate Connector を既に使っている場合は、Intune Certificate Connector の既存の設定を使用して、Symantec CA のサポートを追加できます。 ### <a name="new-items-added-to-device-inventory-----1404455---"></a>デバイス インベントリに追加された新しい項目 <!--1404455 --> [登録デバイスによって取得されるインベントリ](device-inventory.md)で次の新しい項目を利用できるようになりました。 - Wi-Fi MAC アドレス - 記憶域の合計容量 - 合計空き容量 - MEID - 通信事業者 ### <a name="set-access-for-apps-by-minimum-android-security-patch-on-the-device---1278463---"></a>デバイスでの最低限の Android セキュリティ パッチによりアプリへのアクセスを設定する<!-- 1278463 --> 管理者は、管理されたアカウントの管理対象アプリケーションにアクセスするために、デバイスにインストールする必要がある最低限の Android セキュリティ パッチを定義することができます。 > [!Note] > この機能は、Google によって Android 6.0 以降のデバイスについてリリースされたセキュリティ パッチだけを制限します。 ### <a name="app-conditional-launch-support----1193313---"></a>アプリの条件付き起動のサポート <!-- 1193313 --> IT 管理者は、アプリケーションの起動時にモバイル アプリ管理 (MAM) によって数値の PIN ではなくパスコードを強制する要件を、Azure 管理ポータルで設定できるようになりました。 構成した場合、ユーザーは、MAM 対応のアプリケーションにアクセスする前に、要求された時点で、パスコードを設定および使用する必要があります。 パスコードは、少なくとも 1 つの特殊文字または大文字/小文字アルファベットを含む数値 PIN と定義されます。 Intune の今回のリリースでは、この機能を利用できるのは **iOS のみ**です。 Intune は、数値 PIN に同様の方法でパスコードをサポートし、最小の長さを設定して、文字やシーケンスの繰り返しを許可します。 この機能では、対象のアプリケーションにパスコード設定を適用するのではなく、Intune アプリ SDK とこの機能のコードとを統合するために、アプリケーション (WXP、Outlook、Managed Browser、Yammer など) の参加が必要となります。 ### <a name="app-version-number-for-line-of-business-in-device-install-status-report----1233999---"></a>デバイス インストール状態レポートでの基幹業務アプリのバージョン番号 <!-- 1233999 --> このリリースでは、デバイス インストール状態レポートに、iOS および Android 用基幹業務アプリのバージョン番号が表示されます。 この情報を使って、アプリのトラブルシューティングや、古いバージョンのアプリを実行しているデバイスの検索を行うことができます。 ### <a name="admins-can-now-configure-the-firewall-settings-on-a-device-using-a-device-configuration-profile----951708---"></a>管理者は、デバイス構成プロファイルを使ってデバイスでのファイアウォールの設定を構成できるようになる <!-- 951708 --> 管理者は、デバイスのファイアウォールを有効にすることができ、ドメイン ネットワーク、プライベート ネットワーク、パブリック ネットワークのさまざまなプロトコルを構成することもできます。 これらのファイアウォールの設定は、"Endpoint Protection" プロファイルで確認できます。 ### <a name="windows-defender-application-guard-helps-protect-devices-from-untrusted-websites-as-defined-by-your-organization----958257---"></a>Windows Defender Application Guard は、組織での定義に従って、信頼されていない Web サイトからデバイスを保護する <!-- 958257 --> 管理者は、Windows Information Protection ワークフローまたはデバイス構成の新しい "ネットワーク境界" プロファイルを使って、"信頼できる" サイトまたは "企業" サイトを定義できます。 64 ビット Windows 10 デバイスの信頼されたネットワーク境界内にないすべてのサイトは、Microsoft Edge で表示された場合、代わりに Hyper-V 仮想コンピューター内のブラウザーで開かれます。 Application Guard は、"Endpoint Protection" プロファイル内のデバイス構成プロファイルで確認できます。 デバイス構成プロファイルでは、管理者は、仮想化されたブラウザーとホスト マシンの相互作用、信頼されないサイトと信頼されるサイト、および仮想化されたブラウザーで生成されたファイルの保存を構成することができます。 デバイスで Application Guard を使うには、最初にネットワーク境界を構成する必要があります。 デバイスごとにネットワーク境界を 1 つだけ定義することが重要です。 ### <a name="windows-defender-application-control-on-windows-10-enterprise-provides-mode-to-trust-only-authorized-apps----1031096---"></a>Windows 10 Enterprise の Windows Defender Application Control は、承認されたアプリのみを信頼するモードを提供する <!-- 1031096 --> 毎日何千もの悪意あるファイルが作成される状況においては、ウイルス対策の署名ベースの検出を使ってマルウェアに対抗するのでは、新しい攻撃を十分に防ぐことができない可能性があります。 Windows 10 Enterprise の Windows Defender Application Control を使うと、ウイルス対策ソフトウェアや他のセキュリティ ソリューションによってブロックされない限りアプリを信頼するモードから、企業によって承認されたアプリのみをオペレーティング システムが信頼するモードにデバイスの構成を変更できます。 Windows Defender Application Control でアプリに信頼を割り当てます。 Intune を使って、アプリケーション制御ポリシーを "監査のみ" モードまたは強制モードに構成できます。 "監査のみ" モードで実行している場合、アプリはブロックされません。 "監査のみ" モードでは、すべてのイベントがローカル クライアント ログに記録されます。 また、Windows コンポーネントと Microsoft Store アプリの実行のみを許可するか、またはインテリジェント セキュリティ グラフで定義されている評判の良いアプリの実行も許可するかを構成することもできます。 ### <a name="window-defender-exploit-guard-is-a-new-set-of-intrusion-prevention-capabilities-for-windows-10----1063615---"></a>Windows 10 用の新しい侵入防止機能セットである Window Defender Exploit Guard <!-- 1063615 --> Window Defender Exploit Guard は、アプリケーションが悪用される可能性を減らすカスタム規則を含み、マクロとスクリプトの脅威を防止し、評判が低い IP アドレスへのネットワーク接続を自動的にブロックして、ランサムウェアや不明の脅威からデータを保護できます。 Windows Defender Exploit Guard は、次のコンポーネントで構成されます。 - **攻撃の回避 (ASR)** は、マクロ、スクリプト、メールの脅威を防ぐことができる規則を提供します。 - **フォルダー アクセスの制御**は、保護されているフォルダーのコンテンツへのアクセスを自動的にブロックします。 - **ネットワーク フィルター**は、アプリから評判の悪い IP/ドメインへの発信接続をブロックします。 - **Exploit Protection** は、アプリケーションを悪用から保護するために使うことができるメモリ、制御フロー、およびポリシーの制限を提供します。 ### <a name="manage-powershell-scripts-in-intune-for-windows-10-devices----790537---"></a>Windows 10 デバイスの Intune で PowerShell スクリプトを管理する <!-- 790537 --> Intune 管理拡張機能を使用すると、Windows 10 デバイスで実行されている Intune で PowerShell スクリプトをアップロードできます。 この拡張機能は Windows 10 モバイル デバイス管理 (MDM) 機能を補完するもので、最新の管理に簡単に移行できます。 詳細については、「[Windows 10 デバイスの Intune で PowerShell スクリプトを管理する](intune-management-extension.md)」を参照してください。 ### <a name="new-device-restriction-settings-for-windows-10---------1308850---"></a>Windows 10 の新しいデバイスの制限設定 <!-- 1308850 --> - メッセージング (モバイルのみ) - テストまたは MMS のメッセージを無効化します - パスワード - FIPS と、認証用の Windows Hello デバイス セカンダリ デバイスの使用を有効にする設定 - ディスプレイ - レガシ アプリの GDI スケーリングをオンまたはオフにする設定 ### <a name="windows-10-kiosk-mode-device-restrictions----1308872---"></a>Windows 10 キオスク モード デバイスの制限 <!-- 1308872 --> Windows 10 デバイスのユーザーをキオスク モードに制限することができます。これは、一連の定義済みアプリにユーザーを制限します。 そのためには、Windows 10 デバイス制限プロファイルを作成し、キオスク設定を設定します。 キオスク モードは、**シングル アプリ** (1 つのアプリだけの実行をユーザーに許可) または**マルチ アプリ** (アプリのセットへのアクセスを許可) の 2 つのモードをサポートします。 ユーザー アカウントとデバイス名を定義します。これらにより、サポートされるアプリが決まります。 ユーザーはログイン時に定義済みのアプリに制限されます。 詳細については、「[AssignedAccess CSP](https://docs.microsoft.com/windows/client-management/mdm/assignedaccess-csp)」を参照してください。 キオスク モードには以下が必要です。 - Intune が MDM 機関である必要があります。 - アプリは、ターゲット デバイスに既にインストールされている必要があります。 - デバイスは、[適切にプロビジョニングされている](https://docs.microsoft.com/windows/configuration/set-up-a-kiosk-for-windows-10-for-desktop-editions)必要があります。 ### <a name="new-device-configuration-profile-for-creating-network-boundaries----1311967---"></a>ネットワーク境界を作成するための新しいデバイス構成プロファイル <!-- 1311967 --> **ネットワーク境界**と呼ばれる新しいデバイス構成プロファイルが、他のデバイス構成プロファイルと同じ場所にあります。 このプロファイルを使用して、会社のもので信頼できると見なす必要があるオンライン リソースを定義します。 Windows Defender Application Guard や Windows Information Protection などの機能をデバイスで使用するには、"*事前*" にデバイスに対してネットワーク境界を定義する必要があります。 デバイスごとにネットワーク境界を 1 つだけ定義することが重要です。 信頼できるエンタープライズ クラウド リソース、IP アドレス範囲、内部プロキシ サーバーを定義できます。 定義したネットワーク境界は、Windows Defender Application Guard や Windows Information Protection 保護などの他の機能で使うことができます。 ### <a name="two-additional-settings-for-windows-defender-antivirus----1338409---"></a>Windows Defender ウイルス対策用の 2 つの追加設定 <!-- 1338409 --> **ファイル ブロック レベル** | | | |---|---| | 未構成 | **未構成**は、Windows Defender ウイルス対策の既定のブロック レベルを使用し、正当なファイルが検出されるリスクを高めることなく強力な検出を提供します。 | | 高 | **高**は、強力なレベルの検出を適用します。 | 高 + | **高 +** は、高いレベルに加えて、クライアントのパフォーマンスに影響を与える可能性がある保護手段を提供します。 | ゼロ トレランス | **ゼロ トレランス**は、不明な実行可能ファイルをすべてブロックします。 | まれですが、**高**に設定すると、一部の正当なファイルが検出される可能性があります。 ファイル ブロック レベルは既定の**未構成**に設定することをお勧めします。 **クラウドによるファイル スキャンの時間延長** | | | |--|--| | 秒数 (0 - 50) | Windows Defender ウイルス対策がクラウドからの結果の待機中にファイルをブロックする最大時間を指定します。 既定値は 10 秒です。ここで指定した延長時間 (最大 50 秒) は、この 10 秒間に追加されます。 ほとんどの場合、スキャンは最大値よりはるかに短い時間で済みます。 時間を延長すると、クラウドは疑わしいファイルを徹底的に調査できます。 この設定を有効にし、少なくとも 20 秒の追加を指定することをお勧めします。 | ### <a name="citrix-vpn-added-for-windows-10-devices----1512457---"></a>Windows 10 デバイスに追加された Citrix VPN <!-- 1512457 --> Windows 10 デバイス用に Citrix VPN を構成できます。 Windows 10 以降用に VPN を構成するときに、**[基本 VPN]** ブレードの *[接続の種類を選びます]* の一覧で、Citrix VPN を選ぶことができます。 > [!Note] > Citrix の構成は、iOS および Android 用に存在しました。 ### <a name="wi-fi-connections-support-pre-shared-keys-on-ios----1550823---"></a>Wi-Fi 接続は iOS で事前共有キーに対応 <!-- 1550823 --> ユーザーは iOS デバイスで WPA/WPA2 Personal 接続に事前共有キー (PSK) を使用するように Wi-Fi プロファイルを構成できます。 これらのプロファイルは、デバイスが Intune に登録されたとき、ユーザーのデバイスにプッシュされます。 プロファイルがデバイスにプッシュされたとき、次の手順はプロファイル構成によって決まります。 自動的に接続するように設定されている場合、ネットワークが次に必要になったとき、自動的に接続されます。 プロファイルが手動接続になっている場合、ユーザーは接続を手動で開始する必要があります。 ### <a name="access-to-managed-app-logs-for-ios----1469920---"></a>iOS の管理対象アプリ ログにアクセス <!-- 1469920 --> Managed Browser をインストールしているエンド ユーザーは、Microsoft が公開したあらゆるアプリの管理状態を表示し、管理対象 iOS アプリの問題を解消するためにログを送信できるようになりました。 iOS デバイスの Managed Browser でトラブルシューティング モードを有効にする方法については、「[iOS で Managed Browser を使用し、管理対象アプリ ログにアクセスする方法](app-configuration-managed-browser.md#how-to-access-to-managed-app-logs-using-the-managed-browser-on-ios)」を参照してください。 ### <a name="improvements-to-device-setup-workflow-in-the-company-portal-for-ios-in-version-290----1417174---"></a>iOS 用ポータル サイト バージョン 2.9.0 でのデバイスのセットアップ ワークフローの機能強化 <!-- 1417174 --> iOS 用ポータル サイト アプリでのデバイス セットアップ ワークフローが改善されました。 言葉がよりわかりやすくなり、可能な範囲で画面をまとめました。 セットアップのテキスト全体でお客様の会社名を使用することで、表現がより会社に合ったものになっています。 この更新されたワークフローについては、 [アプリ UI ページの新機能](whats-new-app-ui.md)に関するページをご覧ください。 ### <a name="user-entity-contains-latest-user-data-in-data-warehouse-data-model----1544273---"></a>ユーザー エンティティにデータ ウェアハウス データ モデルの最新のユーザー データが含まれている <!-- 1544273 --> Intune データ ウェアハウス データ モデルの最初のバージョンでは、最近の Intune 履歴データのみが含まれていました。 レポートの作成者は、ユーザーの最新の状態をキャプチャできませんでした。 今回の更新プログラムでは、最新のユーザー データを使用して**ユーザー エンティティ**が設定されます。 <!-- ########################## --> ## <a name="october-2017"></a>2017 年 10 月 ### <a name="ios-and-android-line-of-business-app-version-number-is-visible----1380712---"></a>iOS と Android の基幹業務アプリのバージョン番号が表示可能 <!-- 1380712 --> Intune では、iOS と Android の基幹業務アプリのバージョン番号が表示されるようになりました。 Azure Portal のアプリ一覧とアプリ概要ブレードで番号が表示されます。 エンド ユーザーは、ポータル サイト アプリと Web ポータルでアプリ番号を確認できます。 __バージョン番号 (フル)__ このフル バージョン番号はアプリのリリースを特定します。 この番号は _バージョン_(_ビルド_) の形式で表示されます。 たとえば、2.2(2.2.17560800) のようになります。 バージョン番号 (フル) を構成する 2 つの要素: - **バージョン** バージョン番号は、人間が判読できるアプリのリリース番号です。 エンド ユーザーがアプリの各種リリースを区別するために使用されます。 - **ビルド番号** ビルド番号は、アプリの検出に利用される内部番号です。また、プログラミングでアプリを管理するために利用されます。 ビルド番号は、コードの変更を参照するアプリのイテレーションを参照します。 バージョン番号と基幹業務アプリの開発については、「[Microsoft Intune アプリ SDK の概要](app-sdk-get-started.md#line-of-business-app-version-numbers)」を参照してください。 ### <a name="device-and-app-management-integration----677972---"></a>デバイスとアプリの管理の統合 <!-- 677972 --> Intune のモバイル デバイス管理 (MDM) とモバイル アプリケーション管理 (MAM) はどちらも Azure Portal からアクセスできるようになり、Intune はアプリケーション管理とデバイス管理に関する IT 管理者エクスペリエンスの統合を開始しました。 これらの変更は、デバイスとアプリの管理エクスペリエンスの簡素化を目的としたものです。 MDM と MAM の変更の詳細については、[Intune サポート チーム ブログ](https://blogs.technet.microsoft.com/intunesupport/2017/09/19/support-tip-setting-up-communication-between-mam-managed-and-mdm-managed-apps/)での案内をご覧ください。 ### <a name="new-enrollment-alerts-for-apple-devices----1471790---"></a>Apple デバイスの新しい登録アラート <!-- 1471790 --> 登録の概要ページには、IT 管理者のために、Apple デバイスの管理に便利なアラートが表示されるようになります。 Apple MDM プッシュ証明書の有効期間が近づいたり、既に過ぎているとき、Device Enrollment Program の有効期間が近づいたり、既に過ぎているとき、Device Enrollment Program に未割り当てのデバイスがあるとき、アラートが概要ページに表示されます。 ### <a name="support-token-replacement-for-app-configuration-without-device-enrollment----1080364---"></a>デバイス登録のないアプリ構成のトークン置換をサポート <!-- 1080364 --> 登録されていないデバイス上のアプリに関して、アプリ構成の動的な値にトークンを利用できます。 詳細については、「[デバイス登録なしで管理対象アプリ用アプリ構成ポリシーを追加する](app-configuration-policies-managed-app.md)」を参照してください。 ### <a name="updates-to-the-company-portal-app-for-windows-10---1299474--"></a>Windows 10 用ポータル サイト アプリの更新内容 <!--1299474--> Windows 10 用ポータル サイト アプリの [設定] ページが更新され、すべての設定で、設定と目的のユーザー アクションの一貫性が高まっています。 また、その他の Windows アプリのレイアウトと一致させる更新も行われています。 更新前/後のイメージは、[アプリ UI ページの新機能](whats-new-app-ui.md)に関するページでご覧いただけます。 ### <a name="inform-end-users-what-device-information-can-be-seen-for-windows-10-devices---1337920--"></a>Windows 10 デバイスで確認できるデバイス情報のエンドユーザーへの通知 <!--1337920--> Windows 10 用ポータル サイト アプリの [デバイスの詳細] 画面に **[所有権の種類]** が追加されました。 これにより、ユーザーは、Intune エンドユーザー ドキュメントのこのページから直接プライバシーの詳細を確認できるようになります。この情報は、**[バージョン情報]** 画面でも確認できます。 ### <a name="feedback-prompts-for-the-company-portal-app-for-android---1165249--"></a>Android 用ポータル サイト アプリに関するフィードバック プロンプト <!--1165249--> Android 用ポータル サイト アプリでは、エンド ユーザー フィードバックを即時要求します。 このフィードバックは Microsoft に直接送信され、エンドユーザーは一般の Google Play ストアでアプリをレビューできます。 フィードバックは必須ではなく、ユーザーは簡単にこれを拒否して、アプリの使用を続行できます。 <!-- #### Update to what device details an organization can see 1616825 The Company Portal app for Android can now use geofencing to protect access to company resources. It uses network details such as IP address, default gateway address, and Domain Name System (DNS) to determine whether to allow access to protected company resources.--> ### <a name="helping-your-users-help-themselves-with-the-company-portal-app-for-android----1573324-1573150-1558616-1564878---"></a>Android 向けポータル サイト アプリに関してユーザーの自己解決をサポートする <!-- 1573324, 1573150, 1558616, 1564878 --> Android 向けポータル サイト アプリでは、エンド ユーザーへの指示が追加されています。それは新しいユース ケースの理解や、可能な場合にはその自己解決にも役立ちます。 - 追加が許されているデバイスの最大数に到達した場合、デバイスを削除するように、エンド ユーザーは [Azure Active Directory ポータル](https://account.activedirectory.windowsazure.com/r/#/profile)に誘導されます。 - [Samsung Knox デバイスのアクティベーション エラーを解消する](https://go.microsoft.com/fwlink/?linkid=859718)か、[節電モードをオフにする](/intune-user-help/power-saving-mode-android)ための手順がエンド ユーザーに表示されます。 いずれの解決策でも問題が解消されない場合、[Microsoft にログを送信する](/intune-user-help/send-logs-to-microsoft-android)方法を説明します。 ### <a name="new-resolve-action-available-for-android-devices----1583480---"></a>Android デバイスで利用できる新しい '解決' アクション <!-- 1583480 --> Android のポータル サイト アプリの _[デバイス設定の更新]_ ページに '解決' アクションが導入されます。 このオプションを選択すると、デバイスの非準拠の原因になっている設定にエンド ユーザーが直接誘導されます。 Android 向けのポータル サイト アプリでは現在のところ、[デバイス パスコード](/intune-user-help/set-your-pin-or-password-android)、[USB デバッグ](/intune-user-help/you-need-to-turn-off-usb-debugging-android)、[不明なソース](/intune-user-help/you-need-to-turn-off-unknown-sources-android)設定に対してこのアクションがサポートされています。 ### <a name="device-setup-progress-indicator-in-android-company-portal----1565657---"></a>Android 用ポータル サイトのデバイスのセットアップ進行状況インジケーター <!-- 1565657 --> Android 用ポータル サイト アプリでは、ユーザーがデバイスを登録しているときに、デバイスのセットアップ進行状況インジケーターが示されます。 このインジケーターで新しいステータスが表示されます。初めに表示されるものから挙げると、[Setting up your device...] \(デバイスをセットアップしています...\)、[Registering your device...] \(デバイスを登録しています...\)、[Finishing registering your device...] \(デバイス登録を終了しています...\)、[Finishing setting up your device...] \(デバイス セットアップを終了しています...\) です。 ### <a name="certificate-based-authentication-support-on-the-company-portal-for-ios---1029830--"></a>iOS 用ポータル サイトでの証明書ベースの認証のサポート <!--1029830--> iOS 用ポータル サイト アプリでの証明書ベースの認証 (CBA) のサポートが追加されました。 CBA を使用するユーザーは、ユーザー名を入力した後、[Sign in with a certificate]\(証明書でサインインする\) リンクをタップします。 CBA は、Android および Windows 用のポータル サイト アプリで既にサポートされています。 詳細については、「[ポータル サイト アプリにサインインするには](https://docs.microsoft.com/intune-user-help/sign-in-to-the-company-portal)」を参照してください。 ### <a name="apps-that-are-available-with-or-without-enrollment-can-now-be-installed-without-being-prompted-for-enrollment----1334712---"></a>登録の有無にかかわらず利用可能なアプリについて、登録を求められずにインストールできるようになりました。 <!-- 1334712 --> Android ポータル サイト アプリでの登録の有無にかかわらず利用可能な業務用アプリについて、登録を求められずにインストールできます。 ### <a name="windows-autopilot-deployment-program-support-in-microsoft-intune----747617---"></a>Microsoft Intune で Windows AutoPilot Deployment プログラムをサポート  <!-- 747617  --> Microsoft Intune と Windows AutoPilot Deployment プログラムを使用して、IT が関与しなくても、ユーザーが自分の会社のデバイスをプロビジョニングできるようになりました。 OOBE (Out-of-Box Experience) をカスタマイズしたり、ユーザーのデバイスの Azure AD への参加および Intune への登録について、ユーザーをガイドすることができます。 Microsoft Intune と Windows AutoPilot を合わせて使用すると、オペレーティング システム イメージを展開、保持、管理する必要がなくなります。 詳細については、「[Windows AutoPilot Deployment プログラムを使用して Windows デバイスを登録する](https://docs.microsoft.com/intune/enrollment-autopilot)」を参照してください。 ### <a name="quick-start-for-device-enrollment----1425655---"></a>デバイス登録のクイック スタート  <!-- 1425655 -->  **デバイスの登録**でクイック スタートが利用できるようになり、プラットフォームの管理と登録プロセスの構成のための参考資料の表が提供されます。 各項目の簡単な説明と詳細な手順があるドキュメントへのリンクにより、簡単に使用開始するために役立つドキュメントを提供します。 ### <a name="device-categorization----1427491---"></a>デバイスのカテゴリ化 <!-- 1427491 --> **[デバイス] > [概要]** ブレードの登録済みデバイス プラットフォームのグラフは、プラットフォーム (Android、iOS、macOS、Windows、Windows Mobile など) ごとにデバイスをまとめています。  他のオペレーティング システムを実行しているデバイスは "その他" にグループ化されています。  これには、Blackberry、NOKIA、およびその他のメーカー製のデバイスが含まれます。   テナント内で影響を受けるデバイスを把握するには、**[管理] > [すべてのデバイス]** を選択してから、**[フィルター]** を使用して **[OS]** フィールドを制限します。 ### <a name="zimperium---new-mobile-threat-defense-partner-----954681---"></a>Zimperium - 新しい Mobile Threat Defense パートナー   <!-- 954681 --> Microsoft Intune に統合された Mobile Threat Defense ソリューションである Zimperium によって実行されるリスク評価に基づき、条件付きアクセスを利用し、モバイル デバイスから会社のリソースへのアクセスを制御できます。 #### <a name="how-integration-with-intune-works"></a>Intune との統合のしくみ リスクは、Zimperium を実行するデバイスから収集される製品利用統計情報に基づいて評価されます。 Intune デバイス コンプライアンス ポリシーで有効にした Zimperium リスク評価に基づき、EMS 条件付きアクセスのポリシーを構成できます。Intune デバイス コンプライアンス ポリシーは、検出された脅威に基づき、非準拠デバイスから企業リソースへのアクセスを許可したり、拒否したりするために利用できます。 ### <a name="new-settings-for-windows-10-device-restriction-profile------978575-1308849---"></a>Windows 10 デバイス制限プロファイルの新しい設定 <!--- 978575, 1308849, --> Windows Defender SmartScreen カテゴリの Windows 10 デバイス制限プロファイルに新しい設定が追加されます。 Windows 10 デバイス制限のプロファイルの詳細については、「[Windows 10 以降のデバイスの制限設定]( device-restrictions-windows-10.md)」を参照してください。 ### <a name="remote-support-for-windows-and-windows-mobile-devices-----1070473---"></a>Windows と Windows Mobile デバイスのリモート サポート  <!-- 1070473 --> [TeamViewer](https://www.teamviewer.com) ソフトウェア (別売り) を使用して、Windows と Windows Mobile デバイスを実行するユーザーに Intune でリモート アシスタンスを提供できるようになりました。 ### <a name="scan-devices-with-windows-defender----1280988-1280990---"></a>Windows Defender でデバイスをスキャンする <!-- 1280988  1280990   --> 管理された Windows 10 デバイス上で Windows Defender ウイルス対策を使って **クイック スキャン**、**フル スキャン**、**署名更新**を実行できるようになりました。 デバイスの概要ブレードから、デバイス上で実行するアクションを選びます。 コマンドがデバイスに送信される前に、アクションの確認を求められます。  **クイック スキャン**: クイック スキャンでは、レジストリ キーや既知の Windows スタートアップ フォルダーなど、マルウェアが起動するように登録されている場所がスキャンされます。 クイック スキャンには、平均 5 分かかります。 クイック スキャンは、ファイルの開閉時やユーザーがフォルダーに移動したときにファイルをスキャンする **[Always-on real-time protection]\(リアルタイム保護を常に有効にする\)** 設定と組み合わせると、システムやカーネル内に存在する可能性があるマルウェアから保護するのに役立ちます。 完了すると、ユーザーのデバイスにスキャン結果が表示されます。  **フル スキャン**: フル スキャンは、マルウェアの脅威が発生したデバイスで、徹底的なクリーンアップが必要な非アクティブなコンポーネントがあるかどうかを識別するために使用できます。また、オンデマンド スキャンを実行する場合に便利です。 フル スキャンは、実行に 1 時間かかる場合があります。 完了すると、ユーザーのデバイスにスキャン結果が表示されます。  **署名更新**: 署名更新コマンドを使用すると、Windows Defender ウイルス対策のマルウェア定義と署名が更新されます。 マルウェア検出における Windows Defender ウイルス対策ソフトウェアの効果を確保するために役立ちます。 この機能は Windows 10 デバイス専用であり、デバイスのインターネット接続を一時中断します。  ### <a name="the-enabledisable-button-is-removed-from-the-intune-certificate-authority-page-of-the-intune-azure-portal-----1400455---"></a>Intune Azure Portal の Intune 証明機関のページからの [有効]/[無効] ボタンの削除 <!-- 1400455 --> Intune の証明書コネクタの設定で、余分な手順を排除しています。 現在は、証明書コネクタをダウンロードしてから、Intune コンソールでそれを有効にしています。 ただし、Intune コンソールでコネクタを無効にすると、コネクタは証明書の発行に進みます。 #### <a name="how-does-this-affect-me"></a>ユーザーへの影響 10 月以降、Azure Portal の証明機関のページに、[有効]/[無効] ボタンが表示されなくなります。 コネクタ機能は変わりません。 証明書は、Intune に登録したデバイスに引き続き展開されます。 引き続き、証明書コネクタをダウンロードしてインストールすることができます。 証明書の発行を停止するには、証明書コネクタを無効にするのではなく、今すぐアンインストールします。 #### <a name="what-do-i-need-to-do-to-prepare-for-this-change"></a>この変更に対して必要な準備 現在、無効になっている証明書コネクタがある場合は、それをアンインストールする必要があります。 ### <a name="new-settings-for-windows-10-team-device-restriction-profile-------1308838---"></a>Windows 10 Team デバイス制限プロファイルの新しい設定 <!--- 1308838 --> このリリースでは、Surface Hub デバイスの制御に役立つように、Windows 10 Team デバイス制限プロファイルに多数の新しい設定が追加されています。 このプロファイルについて詳しくは、[Windows 10 Team デバイスの制限設定](device-restrictions-windows-10-teams.md)に関するページをご覧ください。 ### <a name="prevent-users-of-android-devices-from-changing-their-device-date-and-time----1333292---"></a>Android デバイス ユーザーによるデバイスの日付と時刻の変更を防止する  <!-- 1333292 --> [Android カスタム デバイス ポリシー](custom-settings-android.md)を使用して、Android デバイス ユーザーがデバイスの日付や時刻を変更できないように設定できます。 この設定を行うには、./Vendor/MSFT/PolicyManager/My/System/AllowDateTimeChange の設定 URI を使用して Android カスタム ポリシーを構成し、これを **TRUE** に設定して該当のグループに割り当てます。 ### <a name="bitlocker-device-configuration---1397398---"></a>BitLocker デバイス構成 <!-- 1397398 --> **[Windows 暗号化] > [Base Settings]\(基本設定\)** に、新たに **[他のディスクの暗号化に対する警告]** 設定が追加されました。この設定では、ユーザーのデバイス上で使われている可能性がある、他のディスクの暗号化についての[警告プロンプト](https://docs.microsoft.com/windows/client-management/mdm/bitlocker-csp#allowarningforotherdiskencryption)を無効にできます。  警告プロンプトの利用には、デバイス上で BitLocker をセットアップする前にエンド ユーザーの同意が必要であり、エンド ユーザーによって承諾されるまで BitLocker のセットアップはブロックされます。  この新しい設定では、エンド ユーザーに対する警告が無効になります。 ### <a name="volume-purchase-program-for-business-apps-will-now-sync-to-your-intune-tenant----800882---"></a>Intune テナントと同期されるようになった Volume Purchase Program for Business アプリ <!-- 800882 --> サードパーティの開発者は、iTunes Connect で指定されている承認された Volume Purchase Program (VPP) for Business メンバーにプライベートでアプリを配布できます。 VPP for Business のメンバーは、Volume Purchase Program App Store にサインインし、アプリを購入できます。 このリリースでは、エンド ユーザーが購入した VPP for Business アプリがそのユーザーの Intune テナントに同期されます。 ### <a name="select-apple-country-store-to-sync-vpp-apps-----1332311---"></a>Apple の国別ストアを選択して VPP アプリを同期する <!-- 1332311 --> Volume Purchase Program (VPP) トークンをアップロードする際に、VPP 国別ストアを構成できます。 指定された VPP 国別ストアにある全ロケールに対応した VPP アプリが、Intune によって同期されます。 > [!NOTE] > 現在、Intune で同期されるのは、Intune テナントが作成された Intune ロケールに一致する VPP 国別ストアの VPP アプリのみです。 ### <a name="block-copy-and-paste-between-work-and-personal-profiles-in-android-for-work----1098994---"></a>Android for Work で仕事用プロファイルと個人プロファイルの間でのコピーおよび貼り付けを防ぐ <!-- 1098994 --> このリリースでは、仕事用アプリと個人用アプリとの間でコピーおよび貼り付けができないように、Android for Work の仕事用プロファイルを構成できます。 この新しい設定は、**[仕事用プロファイルの設定]** の **[Android for Work]** プラットフォームの **[デバイスの制限]** プロファイルにあります。 ### <a name="create-ios-apps-limited-to-specific-regional-apple-app-stores----1281692---"></a>特定地域の Apple App Store のみを対象とした iOS アプリを作成する <!-- 1281692 --> Apple App Store 管理対象アプリの作成時に、国のロケールを指定できるようになります。 > [!Note] > 現在、Apple App Store の管理対象アプリは、米国のストアで販売されるものしか作成できません。 ### <a name="update-ios-vpp-user-and-device-licensed-apps-----1305564---"></a>iOS VPP ユーザーとデバイスにライセンスされたアプリを更新する <!-- 1305564 --> Intune サービスを介して特定の iOS VPP トークンに対して購入されたすべてのアプリを更新するように、トークンを構成できるようになります。 アプリ ストア内の VPP アプリ更新プログラムが Intune によって検出され、デバイスのチェックイン時に自動的にデバイスにプッシュされます。 VPP トークンを設定して、自動更新を有効にする手順については、「[Volume Purchase Program で購入した iOS アプリを Microsoft Intune で管理する方法] (/intune/vpp-apps-ios)」を参照してください。 ### <a name="user-device-association-entity-collection-added-to-intune-data-warehouse-data-model----1187917---"></a>Intune データ ウェアハウスのデータ モデルに追加されたユーザー デバイス関連付けエンティティ コレクション <!-- 1187917 --> ユーザーとデバイスのエンティティ コレクションを関連付けるユーザー デバイス関連付け情報を使って、レポートやデータの視覚エフェクトを作成できるようになりました。 このデータ モデルは、OData エンドポイントを使うか、カスタム クライアントを開発すると、[Data Warehouse Intune]\(データ ウェアハウス Intune\) ページから取得した Power BI ファイル (PBIX) を使ってアクセスできます。 ### <a name="review-policy-compliance-for-windows-10-update-rings----1067886---"></a>Windows 10 更新リングのポリシー準拠状況を確認する <!-- 1067886 --> [ソフトウェア更新プログラム]、[更新プログラムごとのリングの展開の状態] の順に選択することで Windows 10 更新リングのポリシー レポートを確認できるようになります。 ポリシー レポートには、構成した更新リングの展開状態が表示されています。  ### <a name="new-report-that-lists-ios-devices-with-older-ios-versions----1352223---"></a>古い iOS バージョンの iOS デバイス一覧が記載された新しいレポート   <!-- 1352223 --> **[ソフトウェア更新プログラム]** ワークスペースから **[Out-of-date iOS Devices]\(古い iOS デバイス\)** レポートが利用できます。 このレポートには、iOS の更新ポリシーが対象とする監視対象の iOS デバイスの一覧と利用可能な更新が表示されます。 デバイスごとに、デバイスが自動的に更新されない理由のステータスを確認できます。  ### <a name="view-app-protection-policy-assignments-for-troubleshooting----1475003---"></a>トラブルシューティングのアプリ保護ポリシー割り当てを確認する <!--  1475003 --> 今後のリリースでは、トラブルシューティング ブレードにある **[割り当て]** ボックスの一覧に、**[App protection policy]\(アプリの保護ポリシー\)** オプションが追加される予定です。 アプリの保護ポリシーを選んで、特定のユーザーに割り当てられているアプリ保護ポリシーを確認できるようになります。 ### <a name="improvements-to-device-setup-workflow-in-company-portal---1490692--"></a>ポータル サイトでのデバイスのセットアップ ワークフローの機能強化 <!--1490692--> Android 用のポータル サイト アプリでデバイスのセットアップ ワークフローを改良しました。 言語がよりわかりやすく、会社固有のものとなり、可能な範囲で画面をまとめるようにしました。 詳細については、「[アプリ UI の新機能](whats-new-app-ui.md#week-of-october-2-2017)」ページをご覧ください。 ### <a name="improved-guidance-around-the-request-for-access-to-contacts-on-android-devices---1484985--"></a>Android デバイスでの連絡先へのアクセス要求に関するガイダンスの改善 <!--1484985--> Android 用ポータル サイト アプリは、連絡先アクセス許可を受け入れるようにエンド ユーザーに求めることがよくあります。 エンド ユーザーがこのアクセスを拒否すると、条件付きアクセス用のアクセス許可を付与するように通知するアプリ内通知が表示されるようになります。  ### <a name="secure-startup-remediation-for-android---1490712--"></a>Android でのセキュリティで保護された起動の修復 <!--1490712--> Android デバイスを持つエンド ユーザーは、ポータル サイト アプリのコンプライアンス非対応の理由をタップできるようになります。 可能であれば、問題を解決するのに適切な、設定アプリ内の場所がエンド ユーザーに直接表示されます。  ### <a name="additional-push-notifications-for-end-users-on-the-company-portal-app-for-android-oreo---1475932--"></a>Android Oreo のポータル サイト アプリにエンド ユーザー向けプッシュ通知が追加 <!--1475932--> エンド ユーザーには、Android Oreo のポータル サイト アプリが Intune サービスからのポリシーの取得などのバックグラウンド タスクが実行されているときにそれを示す追加の通知が表示されます。 これにより、ポータル サイトがデバイス上でいつ管理タスクを実行しているかが、エンド ユーザーにとってより分かりやすくなります。 これは、Android Oreo のポータル サイト アプリの[ポータル サイト UI の最適化](https://blogs.technet.microsoft.com/intunesupport/2017/08/21/android-8-0-o-behaviour-changes-and-microsoft-intune)の一環です。  Android Oreo で有効になっている新しい UI 要素がさらに最適化されています。  エンドユーザーには、ポータル サイトが Intune サービスからのポリシーの取得などのバックグラウンド タスクを実行しているときにそれを示す追加の通知が表示されます。  これにより、ポータル サイトがデバイスで管理タスクをいつ実行しているかがエンド ユーザーにわかりやすくなります。 ### <a name="new-behaviors-for-the-company-portal-app-for-android-with-work-profiles----1485783---"></a>仕事用プロファイルを使った Android 用ポータル サイト アプリの新しい動作 <!-- 1485783 --> 仕事用プロファイルがある Android for Work デバイスを登録すると、仕事用プロファイル内のポータル サイト アプリによって、そのデバイス上での管理タスクが実行されます。  個人プロファイルで MAM 対応アプリを使っている場合を除き、Android 用ポータル サイト アプリを使用する機会がなくなります。 仕事用プロファイルのエクスペリエンスを向上させるために、Intune では仕事用プロファイルの登録が正常に完了した後、個人用ポータル サイト アプリが自動的に非表示になります。 Android 用ポータル サイト アプリは、[Play ストアでポータル サイト](https://play.google.com/store/apps/details?id=com.microsoft.windowsintune.companyportal) を参照して **[Enable]\(有効化\)** をタップすると、個人プロファイルでいつでも有効にできます。 ### <a name="company-portal-for-windows-81-and-windows-phone-81-moving-to-sustaining-mode---1428681--"></a>維持モードに移行中の Windows 8.1 および Windows Phone 8.1 用ポータル サイト <!--1428681--> 2017 年 10 月より、Windows 8.1 および Windows Phone 8.1 用ポータル サイト アプリは、維持モードに移行されます。 つまり、当該アプリに加え、登録やコンプライアンスといった既存のシナリオは、これらのプラットフォームで引き続きサポートされます。 当該アプリは、Microsoft Store など、既存のリリース チャネル経由で引き続きダウンロード可能です。  維持モードになると、当該アプリは、重要なセキュリティ更新プログラムのみを受信するようになります。 当該アプリの更新プログラムや機能が追加でリリースされることはありません。 新機能を使用するには、デバイスを Windows 10 や Windows 10 Mobile に更新することをお勧めします。  ### <a name="block-unsupported-samsung-knox-device-enrollment----1490695---"></a>サポートされていない Samsung KNOX デバイスの登録をブロックする  <!-- 1490695 --> ポータル サイト アプリでは、サポートされている Samsung KNOX デバイスのみ、登録を試みます。 MDM の登録を妨げる KNOX ライセンス認証エラーの発生を回避するために、登録対象のデバイスが [Samsung によって発行されたデバイス一覧](https://www.samsungknox.com/knox-supported-devices/knox-workspace)に掲載されている場合にのみ、その登録が試行されます。 Samsung デバイスには、KNOX をサポートするモデル番号を持つものがある一方で、そうでないものもあります。 Samsung デバイスを購入および展開する前に、デバイスの再販業者に KNOX 対応の有無について確認してください。 検証済みのデバイスの完全な一覧については、「[Android and Samsung KNOX Standard policy settings (Android および Samsung KNOX Standard のポリシー設定)](supported-devices-browsers.md#intune-supported-web-browsers)」をご覧ください。 ### <a name="end-of-support-for-android-43-and-lower----1171126-1326920---"></a>Android 4.3 以前のサポートの終了 <!-- 1171126, 1326920 --> Android 用の管理対象アプリとポータル サイト アプリで会社のリソースにアクセスするには、Android 4.4 以降を使用している必要があります。 12 月には、登録されているすべてのデバイスがインベントリから削除され、会社のリソースにアクセスできなくなります。 MDM を使わずにアプリの保護ポリシーを使用している場合、アプリは更新プログラムを受信できなくなり、時間の経過と共にエクスペリエンスの質が低下していきます。 ### <a name="inform-end-users-what-device-information-can-be-seen-on-enrolled-devices---1165314--"></a>登録されているデバイスで確認可能なデバイス情報のエンドユーザーへの通知 <!--1165314--> すべてのポータル サイト アプリの [デバイスの詳細] 画面に **[所有権の種類]** が追加されます。 これにより、ユーザーは、「[デバイスを登録した場合に会社が確認できる情報](/intune-user-help/what-info-can-your-company-see-when-you-enroll-your-device-in-intune)」の記事から直接プライバシーの詳細を確認できるようになります。 これは近い将来、すべてのポータル サイト アプリに導入される予定です。 iOS 用については、[9 月](https://docs.microsoft.com/intune/whats-new#week-of-september-11-2017)に発表しました。 <!-- ########################## --> ## <a name="september-2017"></a>2017 年 9 月 ### <a name="intune-supports-ios-11---1428975--"></a>Intune が iOS 11 をサポート <!--1428975--> Intune は iOS 11 をサポートします。 これについては、[Intune サポート ブログ](https://blogs.technet.microsoft.com/intunesupport/2017/09/12/support-tip-intune-support-for-ios-11/)ですでに発表しました。 ### <a name="end-of-support-for-ios-80----1164477---"></a>iOS 8.0 のサポートの終了 <!-- 1164477 --> iOS 用の管理対象アプリとポータル サイト アプリから会社のリソースにアクセスするには、iOS 9.0 以降を使用している必要があります。 この 9 月までに更新されないデバイスは、ポータル サイトまたはそれらのアプリにアクセスできなくなります。  ### <a name="refresh-action-added-to-the-company-portal-app-for-windows-10---1132468--"></a>Windows 10 用ポータル サイト アプリに追加された更新アクション <!--1132468--> Windows 10 向けのポータル サイト アプリでは、ユーザーがプルして更新するか、デスクトップで F5 キーを押して、アプリのデータを更新できます。 ### <a name="inform-end-users-what-device-information-can-be-seen-for-ios---739894--"></a>確認可能な iOS デバイス情報のエンドユーザーへの通知 <!--739894--> iOS 用ポータル サイト アプリの [デバイスの詳細] 画面に **[所有権の種類]** が追加されました。 これにより、ユーザーは、Intune エンドユーザー ドキュメントのこのページから直接プライバシーの詳細を確認できるようになります。この情報は、[バージョン情報] 画面でも確認できます。 ### <a name="allow-end-users-to-access-the-company-portal-app-for-android-without-enrollment----1169910---"></a>エンドユーザーの Android 用のポータル サイト アプリへのアクセスを登録なしで許可する <!---1169910---> エンドユーザーは間もなく Android 用のポータル サイト アプリにアクセスするために、デバイスを登録しなくて済むようになります。 アプリの保護ポリシーを使用する組織のエンドユーザーが、ポータル サイト アプリを開いたときに、デバイスの登録を求めるプロンプトが表示されなくなります。 エンドユーザーはデバイスを登録することなく、ポータル サイトからアプリをインストールできるようにもなります。  ### <a name="easier-to-understand-phrasing-for-the-company-portal-app-for-android----1396349---"></a>Android 用ポータル サイト アプリの文言をわかりやすいように変更 <!---1396349--->   Android 用ポータル サイト アプリについて、エンドユーザーが登録しやすくなるよう、テキストを変更して登録プロセスを簡易化しました。 カスタム登録ドキュメントをお持ちの場合は、ドキュメントを更新して新しい画面を反映したいと思われるかもしれません。 サンプル画像は「[Intune とエンドユーザー アプリの UI の更新](whats-new-app-ui.md#week-of-september-11-2017)」のページにあります。 ### <a name="windows-10-company-portal-app-added-to-windows-information-protection-allow-policy----677129---"></a>Windows 情報保護許可ポリシーに追加された Windows 10 ポータル サイト アプリ <!-- 677129 --> Windows 10 ポータル サイト アプリが更新され、Windows 情報保護 (WIP) がサポートされます。 WIP 許可ポリシーにアプリを追加できます。 この変更により、アプリを **[除外対象]** ボックスの一覧に追加する必要がなくなります。 <!-- ########################## --> ## <a name="august-2017"></a>2017 年 8 月 ### <a name="improvements-to-device-overview----1404453---"></a>デバイス機能強化の概要 <!-- 1404453 --> デバイス機能強化の概要に、登録済みデバイスが表示されるようになりましたが、Exchange ActiveSync で管理されるデバイスは除外されます。 Exchange ActiveSync デバイスには、登録済みデバイスと同じ管理オプションがありません。 Azure Portal の Intune で、登録済みデバイスの数とプラットフォーム別登録済みデバイスの数を表示するには、**[デバイス]**、**[概要]** の順に進みます。 ### <a name="improvements-to-device-inventory-collected-by-intune"></a>Intune で収集されるデバイス インベントリの機能強化 <!-- 961134, 1104426, 1281327, 1333543 --> 今回のリリースでは、ユーザーが管理するデバイスで収集されるインベントリ情報が次のように改善されました。   - Android devices デバイスの場合、各デバイスの最新パッチ レベルを示す列をデバイス インベントリに追加できるようになりました。 デバイスの一覧に **[セキュリティ パッチ レベル]** 列を追加し、これを表示します。 - デバイス ビューにフィルターを適用するとき、登録日付でデバイスを絞り込めるようになりました。 たとえば、指定した日付の後に登録されたデバイスのみを表示できます。 - **[Last Check-in Date]\(最終チェックイン日付\)** 項目で使用されるフィルターを改善しました。 - デバイスの一覧で、会社所有デバイスの電話番号を表示できるようになりました。 さらに、フィルター ウィンドウを利用し、電話番号でデバイスを検索できます。 デバイス インベントリの詳細については、「[Intune デバイス インベントリを表示する方法](device-inventory.md)」を参照してください。 ### <a name="conditional-access-support-for-macos-devices"></a>macOS デバイスの条件付きアクセスのサポート  <!-- 720172 --> Mac デバイスを Intune に登録し、そのデバイス コンプライアンス ポリシーに準拠することを求める条件付きアクセス ポリシーを設定できるようになりました。 たとえば、ユーザーは macOS 用の Intune ポータル サイト アプリをダウンロードして、Mac デバイスを Intune に登録します。 Intune は、暗証番号 (PIN)、暗号化、OS バージョン、およびシステムの整合性などの要件にその Mac デバイスが準拠しているかどうかを評価します。 - macOS デバイスの条件付きアクセスのサポートについて詳しくは、[こちら](https://docs.microsoft.com/azure/active-directory/active-directory-conditional-access-azure-portal)をご覧ください。 ### <a name="company-portal-app-for-macos-is-in-public-preview----1484796---"></a>macOS 用ポータル サイト アプリはパブリック レビュー中です <!---1484796---> macOS 用ポータル サイト アプリが Enterprise Mobility + Security の条件付きアクセス向けパブリック レビューの一部として利用可能になりました。 このリリースでは macOS 10.11 以降をサポートしています。 [https://aka.ms/macOScompanyportal](https://aka.ms/macOScompanyportal) で入手します。  ### <a name="new-device-restriction-settings-for-windows-10"></a>Windows 10 の新しいデバイスの制限設定 <!--1063965, 1308850 --> このリリースでは、次のカテゴリに [Windows 10 デバイス制限プロファイル](/intune/device-restrictions-windows-10)の新しい設定が追加されました。 - Windows Defender SmartScreen - アプリ ストア ### <a name="updates-to-the-windows-10-endpoint-protection-device-profile-for-bitlocker-settings"></a>Windows 10 エンドポイント保護デバイス プロファイルの BitLocker 設定の更新 <!--1459533 -->     今回のリリースでは、Windows 10 エンドポイント保護デバイス プロファイルにおける BitLocker 設定の動作が次のように改善されました。   - **[BitLocker OS ドライブの設定]** の **[互換性のない TPM チップでの BitLocker]** 設定で **[ブロック]** を選択すると、以前は、BitLocker が実際には許可されていました。 ブロックを選択すると BitLocker がブロックされるように修正されました。 - **[BitLocker OS ドライブの設定]** の **[証明書ベースのデータ回復エージェント]** 設定で、証明書ベースのデータ回復エージェントを明示的にブロックできるようになりました。 ただし、既定では、エージェントが許可されます。 - **[BitLocker 固定データ ドライブの設定]** の **[データ回復エージェント]** 設定で、データ回復エージェントを明示的にブロックできるようになりました。 詳しくは、「[Microsoft Intune での Windows 10 以降用の Endpoint Protection 設定](endpoint-protection-windows-10.md)」をご覧ください。 ### <a name="new-signed-in-experience-for-android-company-portal-users-and-app-protection-policy-users----621669---"></a>Android ポータル サイト ユーザーおよびアプリ保護ポリシー ユーザーに対する新しいサインイン エクスペリエンス <!-- 621669 --> エンドユーザーは、Android デバイスを登録することなく、Android ポータル サイトを使用して、アプリの参照、デバイスの管理および IT 連絡先情報を参照できます。 また、エンドユーザーが既に Intune App Protection ポリシーによって保護されているアプリを使用しているときに、Android ポータル サイトを起動した場合、エンドユーザーに、デバイスの登録をするプロンプトが表示されなくなりました。 ### <a name="new-setting-in-the-android-company-portal-app-to-toggle-battery-optimization---1405990--"></a>Android ポータル サイト アプリのバッテリの最適化を切り替える新しい設定 <!--1405990--> Android ポータル サイト アプリの **[設定]** ページには、ポータル サイトと Microsoft Authenticator アプリのバッテリ最適化をユーザーが簡単にオフにできる新しい設定があります。 この設定で表示されるアプリ名は、どのアプリが職場アカウントを管理しているかによって異なります。 電子メールとデータを同期する職場アプリのパフォーマンスの向上には、バッテリの最適化をオフにすることをお勧めします。  ### <a name="multi-identity-support-for-onenote-for-ios----1234281---"></a>OneNote for iOS の複数 ID のサポート      <!-- 1234281 --> エンド ユーザーは Microsoft OneNote for iOS で複数のアカウントを利用できるようになりました (職場用と個人用)。 アプリ保護ポリシーを、個人のノートブックに適用することなく、職場のノートブックの企業データに適用できます。 たとえば、職場のノートブックでは情報を検索できるが、職場のノートブックから個人のノートブックに企業データをコピーして貼り付ける行為は禁止するポリシーを適用できます。   - Intune で [アプリ保護と複数の ID](https://www.microsoft.com/cloud-platform/microsoft-intune-apps) をサポートするアプリについての詳細を参照してください。 ### <a name="new-settings-to-allow-and-block-apps-on-samsung-knox-standard-devices"></a>Samsung KNOX Standard デバイスでアプリを許可またはブロックするための新しい設定 <!-- 1305423 822899--> このリリースでは、次のアプリ一覧を指定できる[デバイスの制限設定](device-restrictions-android.md)が新規に追加されています。   - ユーザーがインストールを許可されているアプリ - ユーザーが実行をブロックされているアプリ - デバイスのユーザーに非表示となっているアプリ   アプリは、URL、パッケージ名、管理対象のアプリ一覧から指定できます。 ### <a name="new-azure-ad-app-based-conditional-access-policy-ui-link-from-intune"></a>Intune からリンクされる新しい Azure AD のアプリ ベースの条件付きアクセス ポリシーの UI <!-- 1016201 --> IT 管理者が、Azure AD のワークロードで新しい条件付きアクセス ポリシーの UI を使用してアプリ ベースの条件付きポリシーを設定できるようになりました。 Azure Portal の Intune App Protection セクションにあるアプリ ベースの条件付きアクセス ポリシーは当面そのまま残り、サイド バイ サイドで強制されます。 また、Intune ワークロードから新しい条件付きアクセス ポリシー UI への便利なリンクもあります。 - Azure AD のアプリ ベースの条件付きアクセスについて詳しくは、[こちら](https://docs.microsoft.com/azure/active-directory/active-directory-conditional-access-technical-reference)をご覧ください。 <!-- ########################## --> ## <a name="july-2017"></a>2017 年 7 月 ### <a name="restrict-android-and-ios-device-enrollment-restriction-by-os-version-----1333256-1245463----"></a>Android および iOS デバイスの OS のバージョンによる登録制限  <!--- 1333256,  1245463 ---> オペレーティング システムのバージョン番号によって iOS と Android の登録を制限する機能が追加されました。 **[デバイスの種類の制限]** で、IT 管理者は、プラットフォーム構成を設定して、オペレーティング システムのバージョン番号の最小値から最大値までの間に登録を制限できるようになりました。 Android オペレーティング システムのバージョンは、Major.Minor.Build.Rev の形式で指定する必要があります (Minor、Build、Rev は任意)。 iOS のバージョンは、Major.Minor.Build の形式で指定する必要があります (Minor と Build は任意)。 [デバイス登録の制限](enrollment-restrictions-set.md)の詳細については、こちらを参照してください。 >[!NOTE] >Apple の登録プログラムまたは Apple Configurator では、登録は制限されません。 ### <a name="restrict-android-ios-and-macos-device-personally-owned-device-enrollment-----1333272-1333275-1245709---"></a>個人所有の Android、iOS、および macOS デバイスの登録を制限する  <!--- 1333272,  1333275, 1245709 ---> Intune では、会社デバイスの IMEI 番号のホワイトリストを作成して、個人用デバイスの登録を制限できます。 Intune では、デバイス シリアル番号を使って、この機能を iOS、Android、macOS に拡張しています。 Intune にデバイスのシリアル番号をアップロードし、それを企業所有として事前に宣言できます。 登録の制限を使用すると、個人所有のデバイス (BYOD) をブロックして、企業所有のデバイスのみの登録を許可することができます。 [デバイス登録の制限](enrollment-restrictions-set.md)の詳細については、こちらを参照してください。 シリアル番号をインポートするには、**[デバイスの登録]** > **[業務用デバイスの ID]** に進み、**[追加]** をクリックし、(ヘッダーはない、シリアル番号と IMEI 番号など詳細情報がある 2 つの列の) CSV ファイルをアップロードします。 個人所有のデバイスを制限するには、**[デバイスの登録]** > **[登録制限]** に移動します。 **[デバイスの種類の制限]** から **[既定]** を選択し、**[プラットフォーム構成]** を選択します。 個人所有の iOS、Android、および macOS デバイスを **[許可]** または **[ブロック]** できます。 ### <a name="new-device-action-to-force-devices-to-sync-with-intune----711369---"></a>デバイスを Intune と強制同期する新しいデバイス アクション <!-- 711369 --> このリリースでは、選択したデバイスの Intune への即座のチェックインを強制する新しいデバイス アクションが追加されています。 チェックインしたデバイスには、それに対して保留中のアクションまたはポリシーが即座に割り当てられます。  このアクションにより、次のスケジュールされたチェックインを待つことなく、割り当てられたポリシーの検証およびトラブルシューティングを即座に実行できるようになります。 詳細については、「[同期デバイス](device-sync.md)」を参照してください。 ### <a name="force-supervised-ios-devices-to-automatically-install-the-latest-available-software-update----777100---"></a>監督下の iOS デバイスに利用可能な最新のソフトウェア更新プログラムを強制的に自動インストールする <!-- 777100 --> ソフトウェアの更新プログラム ワークスペースに用意された新しいポリシーを使用すると、監督下の iOS デバイスに利用可能な最新のソフトウェア更新プログラムを強制的に自動インストールできます。 詳細については、「[Configure iOS update policies](/intune/software-updates-ios)」 (iOS 更新プログラム ポリシーの構成) を参照してください。 ### <a name="check-point-sandblast-mobile---new-mobile-threat-defense-partner----954651-1172027---"></a>チェック ポイント SandBlast Mobile - 新しい Mobile Threat Defense パートナー  <!-- 954651, 1172027 --> Microsoft Intune に統合された Mobile Threat Defense ソリューションであるチェックポイントの SandBlast Mobile によって実行されるリスク評価に基づき、条件付きアクセスを利用し、モバイル デバイスから会社のリソースへのアクセスを制御できます。 #### <a name="how-integration-with-intune-works"></a>Intune との統合のしくみ リスクは、チェックポイントの SandBlast Mobile を実行するデバイスから収集される製品利用統計情報に基づいて評価されます。 Intune のデバイス コンプライアンス ポリシーにより有効になったチェックポイントの SandBlast Mobile のリスク評価に基づいて、EMS の条件付きアクセス ポリシーを構成できます。 検出された脅威に基づき、非準拠デバイスの企業リソースへのアクセスを許可またはブロックすることができます。 ### <a name="deploy-an-app-as-available-in-the-microsoft-store-for-business----748101---"></a>ビジネス向け Microsoft ストアで利用可能なアプリを展開する <!-- 748101 --> このリリースでは、管理者はビジネス向け Microsoft ストアを使用可能として割り当てることができるようになりました。 使用可能として設定すると、エンドユーザーは、Microsoft ストアにリダイレクトされることなく、ポータル サイトのアプリまたは Web サイトからアプリをインストールできます。 ### <a name="ui-updates-to-the-company-portal-website---1313244-part-1--"></a>ポータル Web サイトの UI の更新 <!--1313244 part 1--> エンド ユーザー エクスペリエンスを向上させるために、[ポータル Web サイト](https://portal.manage.microsoft.com)の UI をいくつか更新しました。 - __アプリ タイルの機能強化__: アプリ アイコンが、アイコンの主調色に基づいて自動生成される背景で表示されます (アイコンを検出できた場合)。 適用できる場合は、アプリ タイルで以前表示されていた灰色の枠線が、この背景に代わります。 ポータル サイト Web サイトでは、今後のリリースで可能なときには常に大きなアイコンで表示されます。 IT 管理者は、最小サイズが 120 x 120 ピクセルの高解像度アイコンを使用して、アプリを公開することをお勧めします。  - __ナビゲーションの変更__: ナビゲーション バーの項目が、左上のハンバーガー メニューに移動されています。 カテゴリのページは削除されています。 ユーザーは参照中にカテゴリでコンテンツをフィルター処理できるようになりました。 - __おすすめアプリの更新__: サイトにおすすめとして選択したアプリを参照できる専用ページを追加し、ホームページのおすすめセクションでいくつかの UI の修正を行いました。 ### <a name="ibooks-support-for-the-company-portal-website---1231841--"></a>ポータル サイト Web サイトでの iBooks のサポート <!--1231841--> ポータル サイトの Web サイトにユーザーが iBooks を参照してダウンロードできる専用ページを追加しました。  ### <a name="additional-help-desk-troubleshooting-details-----applies-to-1263399-1326964-1341642----"></a>ヘルプ デスク トラブルシューティングの追加詳細 <!---  Applies to 1263399, 1326964, 1341642 ---> Intune では、トラブルシューティング ディスプレイを更新し、管理者やヘルプ デスク スタッフ向けの情報を追加しました。 グループのメンバーシップに基づいてユーザーの全割り当てをまとめた**割り当て**テーブルが表示されます。 この一覧の内容: - モバイル アプリ - Compliance ポリシー - 構成プロファイル また、**デバイス** テーブルに **[Azure AD 結合の種類]** 列と **[Azure AD 準拠]** 列が追加されました。 詳細については「[問題のトラブルシューティングの方法](help-desk-operators.md)」を参照してください。 ### <a name="intune-data-warehouse-public-preview"></a>Intune データ ウェアハウス (パブリック プレビュー) Intune データ ウェアハウスは、データを毎日サンプリングし、テナントの履歴ビューを提供します。 多くの分析ツールと互換性がある OData リンクである Power BI ファイル (PBIX) を使用するか、REST API と対話して、データにアクセスできます。 詳細については、「[Intune データ ウェアハウスを使用する](reports-nav-create-intune-reports.md)」を参照してください。 ### <a name="light-and-dark-modes-available-for-the-company-portal-app-for-windows-10----676547---"></a>Windows 10 のポータル サイト アプリで利用可能なライト モードとダーク モード <!---676547---> エンドユーザーは Windows 10 のポータル サイト アプリのカラー モードをカスタマイズできるようになります。 ユーザーはポータル サイト アプリの [設定] セクションでこの変更をできるようになります。 変更はユーザーがアプリを再起動した後に反映されます。 Windows 10 のバージョン 1607 以降では、アプリ モードは既定でシステム設定になります。 Windows 10 のバージョン 1511 以前では、アプリ モードは既定でライト モードになります。 ### <a name="enable-end-users-to-tag-their-device-group-in-the-company-portal-app-for-windows-10----807046--"></a>エンドユーザーは Windows 10 用のポータル サイト アプリでデバイス グループをタグ付けできる <!---807046--> エンドユーザーは Windows 10 のポータル サイト アプリから直接タグ付けすることにより、デバイスの所属グループを選択できるようになりました。 <!-- ########################## --> ## <a name="june-2017"></a>2017 年 6 月 ### <a name="new-role-based-administration-access-for-intune-admins------1099990---"></a>Intune 管理者のための新しいロール ベース管理アクセス <!-- 1099990 --> Azure AD の条件付きアクセス ポリシーを表示、作成、変更、削除できる新しい条件付きアクセス管理者ロールが追加されます。 以前は、このアクセス許可を持つのは、グローバル管理者とセキュリティ管理者のみでした。 条件付きアクセス ポリシーにアクセスできるように、Intune 管理者にこのロールのアクセス許可が付与されます。 ### <a name="tag-corporate-owned-devices-with-serial-number----1215070---"></a>会社所有のデバイスにシリアル番号をタグ付けする <!-- 1215070 --> Intune では、iOS、macOS、Android のシリアル番号を会社デバイスの識別子としてアップロードできるようになりました。 この新機能では、シリアル番号を使用して個人用デバイスの登録をブロックすることはできません。登録中はシリアル番号が検証されないためです。 シリアル番号を使用して個人用デバイスをブロックする機能は、近いうちにリリースされる予定です。 ### <a name="new-remote-actions-for-ios-devices----854689---"></a>iOS デバイスの新しいリモート操作 <!-- 854689 --> このリリースでは Apple Classroom アプリを管理する新しいリモート デバイス アクションを共有の iPad デバイスに追加しました。 - [[現在のユーザーのログアウト]](device-logout-user.md) - 選択した iOS デバイスの現在のユーザーをログアウトさせます。 - [[ユーザーの削除]](device-remove-user.md) - iOS デバイスのローカル キャッシュから選択したユーザーを削除します。 ### <a name="support-for-shared-ipads-with-the-ios-classroom-app----1044681---"></a>iOS Classroom アプリによる共有 iPad のサポート <!-- 1044681 --> このリリースでは、iOS Classroom アプリの管理サポートが拡張され、自分で管理している Apple ID を使って共有 iPad にログインする生徒を含めることができるようになっています。 ### <a name="changes-to-intune-built-in-apps----1332306---"></a>Intune の組み込みアプリの変更 <!-- 1332306 --> 以前は、Intune に簡単に割り当てができる組み込みのアプリが多数含まれていました。 お客様からのフィードバックに基づき、この一覧を削除しました。組み込みのアプリは今後表示されません。 ただし、組み込みのすべてのアプリが既に割り当てられている場合、そのアプリはアプリの一覧に引き続き表示されます。 これらのアプリの割り当ては必要に応じて続行することができます。 今後のリリースでは、Azure Portal から組み込みのアプリをより簡単に選択して割り当てる方法を追加する予定です。 ### <a name="easier-installation-of-office-365-apps-----1121362----"></a>Office 365 アプリをより簡単にインストールする <!--- 1121362 ---> 新しいタイプの **Office 365 ProPlus** アプリでは、最新バージョンの Windows 10 を実行する管理対象のデバイスに、Office 365 ProPlus 2016 アプリを簡単に割り当てることができます。 また、ライセンスを所有している場合、Microsoft Project や Microsoft Visio をインストールすることもできます。 必要なアプリはバンドルされ、Intune コンソールのアプリ一覧に 1 つのアプリとして表示されます。 詳細については、「[Windows 10 用の Office 365 アプリを追加する方法](apps-add-office365.md)」を参照してください。 ### <a name="support-for-offline-apps-from-the-microsoft-store-for-business-----777044----"></a>ビジネス向け Microsoft ストアから入手したオフライン アプリのサポート <!--- 777044 ---> ビジネス向け Microsoft ストアから購入したオフライン アプリが Azure Portal に同期されます。 その後、これらのアプリをデバイス グループまたはユーザー グループに展開できます。 オフライン アプリはストアではなく Intune でインストールします。 ### <a name="microsoft-teams-is-now-part-of-the-app-based-ca-list-of-approved-apps------1257019---"></a>Microsoft Teams が承認済みアプリのアプリ ベース CA 一覧の一部になった <!-- 1257019 --> iOS と Android 用の Microsoft Teams アプリが、Exchange と SharePoint Online のアプリ ベースの条件付きアクセス ポリシー向けの承認済みアプリの一部になりました。 Azure Portal の Intune アプリ保護ブレードで、現在アプリ ベースの条件付きアクセスを使っているすべてのテナントにアプリを構成できます。 ### <a name="managed-browser-and-app-proxy-integration----1287310---"></a>管理対象ブラウザーとアプリ プロキシの統合 <!-- 1287310 --> Intune Managed Browser は Azure AD アプリケーション プロキシと統合できるようになり、ユーザーはリモートで作業しているときでも内部 Web サイトにアクセスできます。 ブラウザーのユーザーが通常と同じようにサイトの URL を単に入力すると、Managed Browser はアプリケーション プロキシの Web ゲートウェイを介して要求をルーティングします。 詳しくは、「[Managed Browser ポリシーを使用したインターネット アクセスの管理](app-configuration-managed-browser.md)」をご覧ください。 ### <a name="new-app-configuration-settings-for-the-intune-managed-browser----682951---"></a>Intune Managed Browser の新しいアプリ構成設定 <!-- 682951 --> このリリースでは、iOS および Android 用の Intune Managed Browser アプリに構成が追加されました。 アプリ構成ポリシーを使って、ブラウザーの既定のホーム ページとブックマークを構成できます。 詳しくは、「[Managed Browser ポリシーを使用したインターネット アクセスの管理](app-configuration-managed-browser.md)」をご覧ください。 ### <a name="bitlocker-settings-for-windows-10-----951707---"></a>Windows 10 用の BitLocker の設定 <!-- 951707 --> 新しい Intune デバイス プロファイルを使って、Windows 10 デバイス用の BitLocker の設定を構成できます。 たとえば、デバイスの暗号化を要求でき、BitLocker が有効になっているときに適用される設定をさらに構成することもできます。 詳しくは、「[Microsoft Intune での Windows 10 以降用の Endpoint Protection 設定](endpoint-protection-windows-10.md)」をご覧ください。 ### <a name="new-settings-for-windows-10-device-restriction-profile-----978527--978550-978569-1050031-1058611-----"></a>Windows 10 デバイス制限プロファイルの新しい設定 <!--- 978527, 978550, 978569, 1050031, 1058611, ---> このリリースでは、次のカテゴリに Windows 10 デバイス制限プロファイルの新しい設定が追加されました。 - Windows Defender - 携帯ネットワークと接続性 - ロック画面 - プライバシー - 検索 - Windows スポットライト - Microsoft Edge ブラウザー Windows 10 の設定について詳しくは、「[Microsoft Intune での Windows 10 以降のデバイスの制限設定](device-restrictions-windows-10.md)」をご覧ください。 ### <a name="company-portal-app-for-android-now-has-a-new-end-user-experience-for-app-protection-policies---1305217--"></a>Android 用ポータル サイト アプリのアプリ保護ポリシーの新しいエンド ユーザー エクスペリエンス <!--1305217--> ユーザーのフィードバックに基づいて、Android 用ポータル サイト アプリに **[会社のコンテンツにアクセスする]** ボタンが表示されるようになりました。 目的は、エンド ユーザーがアプリの保護ポリシーをサポートするアプリ、Intune モバイル アプリケーション管理の機能にのみアクセスする必要があるときに、不要な登録プロセスを経由せずに済むようにすることです。 これらの変更については、「[アプリ UI の新機能](whats-new-app-ui.md)」ページをご覧ください。 ### <a name="new-menu-action-to-easily-remove-company-portal---1164569--"></a>ポータル サイトを簡単に削除できるアクション メニューの追加 <!--1164569--> Android 用ポータル サイト アプリでは、ユーザーからのフィードバックに基づき、デバイスからポータル サイトの削除を開始できる新しいアクション メニューが追加されました。 この操作は、ユーザーがデバイスからアプリを削除できるように、Intune の管理からデバイスを削除します。 これらの変更については、[Android エンド ユーザー向けドキュメント](/intune-user-help/unenroll-your-device-from-intune-android)の[アプリ UI の新機能](whats-new-app-ui.md)に関するページで確認できます。 ### <a name="improvements-to-app-syncing-with-windows-10-creators-update---676505--"></a>Windows 10 Creators Update とアプリを同期する機能の強化 <!--676505--> Windows 10 用ポータル サイト アプリでは、Windows 10 Creators Update (バージョン 1703) がインストールされているデバイスのアプリ インストール要求の同期が自動的に開始されるようになりました。 "同期保留中" 状態中、アプリ インストールが止まる問題を減らします。 また、ユーザーは、アプリ内からの同期を手動で開始することができます。 これらの変更については、「[アプリ UI の新機能](whats-new-app-ui.md)」ページをご覧ください。 ### <a name="new-guided-experience-for-windows-10-company-portal----1058938---"></a>Windows 10 ポータル サイトの新しいガイド機能 <!---1058938---> Windows 10 用のポータル サイト アプリで、特定または登録されていないデバイス向けのガイド付き Intune チュートリアルを利用できるようになります。 ユーザーは新たな段階的手順に従って、Azure Active Directory (条件付きアクセス機能のために必要) と MDM (デバイス管理機能のために必要) に登録できます。 このガイドには、ポータル サイトのホーム ページからアクセスできます。 ユーザーは、これらの登録を完了していない場合でも引き続きアプリを使用できますが、機能が制限されます。 この更新は、Windows 10 Anniversary Update (ビルド 1607) 以降を実行しているデバイスのみで表示されます。 これらの変更については、「[アプリ UI の新機能](whats-new-app-ui.md)」ページをご覧ください。 ### <a name="microsoft-intune-and-conditional-access-admin-consoles-are-generally-available"></a>Microsoft Intune 管理コンソールと条件付きアクセス管理コンソールの一般提供開始 Azure Portal の新しい Intune 管理コンソールと、条件付きアクセス管理コンソールの一般提供開始が発表されました。 Azure Portal で Intune を利用することで、Intune MAM および MDM のすべての機能を統合された 1 つの管理者エクスペリエンスで管理し、Azure AD のグループとターゲットを利用できるようになりました。 Azure の条件付きアクセスにより、Azure AD と Intune の豊富な機能が一元化されたコンソールに統合されます。 また管理者エクスペリエンスから Azure プラットフォームに移動して、最新のブラウザーを使用できます。 Intune は、**[プレビュー]** ラベルが外れた状態で Azure Portal (portal.azure.com) に表示されるようになりました。 メッセージ センターの一連のメッセージのうち、グループを移行できるようにお客様の対応をお願いするメッセージを受信された場合を除き、現時点で既存のお客様にしていただくことはありません。 こちらのバグにより、移行に時間がかかることをお知らせする通知がメッセージ センターから送信されている場合もあります。 Microsoft では、影響を受けたユーザーを移行する作業に引き続き取り組んでまいります。 ### <a name="improvements-to-the-app-tiles-in-the-company-portal-app-for-ios"></a>iOS 用ポータル サイト アプリのアプリ タイルを改善 ポータル サイトに設定したブランド カラーが反映されるよう、ホーム ページのアプリ タイルのデザインを一新しました。 詳細については、[アプリ UI の新機能](whats-new-app-ui.md)に関するページをご覧ください。 ### <a name="account-picker-now-available-for-the-company-portal-app-for-ios"></a>iOS 用ポータル サイト アプリでアカウント選択の提供を開始 iOS デバイスのユーザーが、職場または学校アカウントを使用して別の Microsoft アプリにサインインしているときに、ポータル サイトにサインインしようとすると、新しいアカウントの選択が表示される場合があります。 詳細については、[アプリ UI の新機能](whats-new-app-ui.md)に関するページをご覧ください。 <!-- ########################## --> ## <a name="may-2017"></a>2017 年 5 月 ### <a name="change-your-mdm-authority-without-unenrolling-managed-devices---1103950--"></a>マネージド デバイスの登録を解除せず、MDM 機関を変更する <!--1103950--> Microsoft サポートに問い合わせずに、また、既存のマネージド デバイスの登録解除と再登録を行わずに MDM 機関を変更できるようになりました。 Configuration Manager コンソールで、[Configuration Manager に設定]\(ハイブリッド\) から [Microsoft Intune]\(スタンドアロン\) に、またはその逆に [MDM 機関を変更](/sccm/mdm/deploy-use/change-mdm-authority)できます。 ### <a name="improved-notification-for-samsung-knox-startup-pins---1087143--"></a>Samsung KNOX スタートアップ PIN の通知機能の強化 <!--1087143--> 暗号化に対応するために、エンド ユーザーが Samsung KNOX デバイスにスタートアップ PIN を設定する必要がある場合、エンド ユーザーに表示される通知をタップすると、設定アプリ内の設定場所に移動します。 以前は、エンド ユーザーは通知からパスワード変更画面に進むことができました。 ### <a name="device-enrollment"></a>デバイスの登録 #### <a name="apple-school-manager-asm-support-with-shared-ipad----748864-770395--"></a>共有 iPad での Apple School Manager (ASM) のサポート <!-- 748864, 770395--> Intune では、Apple Device Enrollment Program の代わりに Apple School Manager (ASM) を使用できるようになりました。すぐに iOS デバイスを登録できます。 共有 iPad で Classroom アプリを使用するには ASM オンボードが必要です。これは、Microsoft School Data Sync (SDS) 経由で ASM から Azure Active Directory へのデータ同期を有効にする際にも必要です。 詳細については、「[Enable iOS device enrollment with Apple School Manager (Apple School Manager での iOS デバイス登録の有効化)](apple-school-manager-set-up-ios.md)」をご覧ください。 > [!NOTE] > 共有 iPad で Classroom アプリを使用できるように構成するには、Azure に iOS 向けの Education の構成が必要ですが、現時点では提供されていません。 この機能は、近日中に追加される予定です。 ### <a name="device-management"></a>デバイス管理 #### <a name="provide-remote-assistance-to-android-devices-using-teamviewer----675418---"></a>TeamViewer を利用して Android デバイスにリモート アシスタンスを提供 <!-- 675418 --> Intune では、別売りの [TeamViewer](https://www.teamviewer.com) ソフトウェアを利用して、Android デバイスを使用するユーザーにリモート アシスタンスを提供できるようになりました。 詳細については、「[Provide remote assistance for Intune managed Android devices (Intune 管理対象の Android デバイスにリモート アシスタンスを提供)](device-profile-android-teamviewer.md)」をご覧ください。 ### <a name="app-management"></a>アプリ管理 #### <a name="new-app-protection-policies-conditions-for-mam----679864---"></a>MAM の新しいアプリ保護ポリシー条件 <!-- 679864 --> 登録ユーザーなしで、次のポリシーを強制する MAM の要件を設定できるようになりました。 - アプリケーションの最小バージョン - オペレーティング システムの最小バージョン - 対象アプリケーションの最小 Intune APP SDK バージョン (iOS のみ) この機能は、Android と iOS の両方で使うことができます。 Intune は、OS プラットフォーム バージョン、アプリケーション バージョン、Intune APP SDK の最小バージョン強制に対応しています。 iOS の場合、SDK が統合されているアプリケーションでも SDK レベルで最小バージョン強制を設定できます。 アプリ保護ポリシーの最小要件が上述の 3 つの異なるレベルで満たされていない場合、ユーザーは対象アプリケーションにアクセスできません。 この時点で、ユーザーはアカウントを削除するか (複数 ID アプリケーションの場合)、アプリケーションを閉じるか、OS またはアプリケーションのバージョンを更新できます。 また、OS またはアプリケーションのアップグレードを推奨するブロック不可の通知を表示するように追加設定することもできます。 この通知は閉じて、アプリケーションを普段どおり使用できます。 詳細については、「[iOS アプリ保護ポリシー設定](app-protection-policy-settings-ios.md)」と「[Android アプリ保護ポリシー設定](app-protection-policy-settings-android.md)」をご覧ください。 #### <a name="configure-app-configurations-for-android-for-work----621621---"></a>Android for Work 用のアプリ構成の設定 <!-- 621621 --> ストアの一部の Android アプリは管理対象の構成オプションをサポートしているため、IT 管理者は作業プロファイルでアプリの実行方法を制御できます。 Intune では、Azure Portal からアプリがサポートする構成を表示し、構成デザイナーまたは JSON エディターを使用してこれらの構成を設定できるようになりました。 詳細については、[Android for Work 用のアプリ構成の使用](app-configuration-policies-use-android.md)に関するページをご覧ください。 #### <a name="new-app-configuration-capability-for-mam-without-enrollment----677969---"></a>登録なしで利用できる MAM の新しいアプリ構成機能 <!-- 677969 --> 登録チャネルがなくても MAM からアプリ構成ポリシーを作成できるようになりました。 これは、モバイル デバイス管理 (MDM) のアプリ構成で使用できるアプリ構成ポリシーと同等の機能です。 登録せずに MAM を使用してアプリを構成する例については、「[Manage Internet access using Managed browser policies with Microsoft Intune (Microsoft Intune と Managed Browser のポリシーを使用したインターネット アクセスの管理)](app-configuration-managed-browser.md)」をご覧ください。 #### <a name="configure-allowed-and-blocked-url-lists-for-the-managed-browser----682960---"></a>Managed Browser で許可される URL とブロックされる URL 一覧の構成 <!-- 682960 --> Azure Portal のアプリ構成設定を使用して、Intune Managed Browser で許可またはブロックされるドメインおよび URL の一覧を構成できるようになりました。 これらの設定は、マネージド デバイスで使用されているか、アンマネージド デバイスで使用されているかに関係なく構成できます。 詳細については、「[Manage Internet access using Managed browser policies with Microsoft Intune (Microsoft Intune と Managed Browser のポリシーを使用したインターネット アクセスの管理)](app-configuration-managed-browser.md)」をご覧ください。 #### <a name="app-protection-policy-helpdesk-view----1069473---"></a>アプリ保護ポリシー ヘルプデスクのビュー <!-- 1069473 --> IT ヘルプデスクのユーザーは、[トラブルシューティング] ブレードで、ユーザー ライセンスの状態と、ユーザーに割り当てられているアプリのアプリ保護ポリシーの状態を確認できるようになりました。 詳細については、[トラブルシューティング](./help-desk-operators.md)に関するページをご覧ください。 ### <a name="device-configuration"></a>デバイス構成 #### <a name="control-website-visits-on-ios-devices----723832---"></a>iOS デバイスの Web サイト アクセスの制御 <!-- 723832 --> iOS デバイスのユーザーがアクセスできる Web サイトを次の 2 つの方法を使って制御できるようになりました。 - Apple の組み込み Web コンテンツ フィルターを使って、許可される URL またはブロックされる URL を追加します。 - Safari ブラウザーによるアクセスを許可する Web サイトを指定します。 指定した各サイトについて、Safari にブックマークが作成されます。 詳細については、「[Web content filter settings for iOS devices (iOS デバイス用の Web コンテンツ フィルター設定)](web-content-filter-settings-ios.md)」をご覧ください。 #### <a name="preconfigure-device-permissions-for-android-for-work-apps----621614---"></a>Android for Work アプリのデバイス アクセス許可の事前構成 <!-- 621614 --> Android for Work デバイスの作業プロファイルに展開したアプリの場合、個々のアプリのアクセス許可状態を構成できるようになりました。 既定では、場所やデバイス カメラへのアクセスなど、デバイスのアクセス許可を必要とする Android アプリはアクセス許可の承諾または拒否をユーザーに求めます。 たとえば、アプリでデバイスのマイクが使用される場合、そのマイクを使用するアクセス許可をアプリに与えるようにエンド ユーザーに求められます。 この機能を利用すると、エンド ユーザーの代わりにアクセス許可を定義できます。 アクセス許可は、a) ユーザーに通知することなく自動的に拒否する、b) ユーザーに通知することなく自動的に承諾する、c) 承諾または拒否をユーザーに求めるのいずれかに構成できます。 詳細については、「[Microsoft Intune での Android for Work デバイスの制限設定](device-restrictions-android-for-work.md)」をご覧ください。 #### <a name="define-app-specific-pin-for-android-for-work-devices----728976-1102534---"></a>Android for Work デバイスのアプリ固有 PIN を定義する <!-- 728976, 1102534 --> 管理者は、Android for Work デバイスとして管理されている Android 7.0 以上のデバイスの作業プロファイルで、作業プロファイルのアプリにのみ適用されるパスコード ポリシーを定義できます。 次のオプションがあります。 - デバイス全体のパスコード ポリシーだけを定義する - これは、デバイス全体のロックを解除するためにユーザーが使用しなければならないパスコードです。 - 作業プロファイルのパスコード ポリシーだけを定義する - 作業プロファイルのアプリを起動するたびに、ユーザーにパスコードの入力が求められます。 - デバイスと作業プロファイル ポリシーの両方を定義する - IT 管理者はデバイスのパスコード ポリシーと作業プロファイルのパスコード ポリシーをいずれも異なる強度で定義できます。たとえば、デバイスのロック解除に 4 桁の PIN を要求し、作業アプリの起動に 6 桁の PIN を要求します。 詳細については、「[Microsoft Intune での Android for Work デバイスの制限設定](device-restrictions-android-for-work.md)」をご覧ください。 > [!NOTE] > この機能は Android 7.0 以降でのみ利用できます。 既定では、エンド ユーザーは別々に定義された 2 つの PIN を利用できます。あるいは、定義された 2 つの PIN のうちの強いほうを選択できます。 #### <a name="new-settings-for-windows-10-devices----978585---"></a>Windows 10 デバイスの新しい設定 <!-- 978585 --> Microsoft は、無線ディスプレイ、デバイス検出、タスク切り替え、SIM カード エラー メッセージなどの機能を制御する新しい [Windows デバイス制限設定](device-restrictions-windows-10.md)を追加しています。 #### <a name="updates-to-certificate-configuration----918991-and-823198---"></a>証明書の構成の更新 <!-- 918991 and 823198 --> SCEP 証明書プロファイルを作成するときに、<strong>[サブジェクト名の形式]</strong>で、<strong>[カスタム]</strong> オプションを iOS、Android、および Windows デバイスでご利用いただけます。 今回の更新までは、<strong>[カスタム]</strong> フィールドを使用できるのは iOS デバイスだけでした。 詳細については、「[SCEP 証明書プロファイルを作成する](certificates-scep-configure.md#create-a-scep-certificate-profile)」をご覧ください。 PKCS 証明書プロファイルを作成するときに、**[サブジェクトの別名]** で、**[Custom Azure AD attribute]\(Azure AD のカスタム属性\)** をご使用いただけます。 **[Custom Azure AD attribute]\(Azure AD のカスタム属性\)** を選択すると、**[部門]** オプションが使用できます。 詳細については、「[PKCS 証明書プロファイルを作成する](certficates-pfx-configure.md#create-a-pkcs-certificate-profile)」をご覧ください。 #### <a name="configure-multiple-apps-that-can-run-when-an-android-device-is-in-kiosk-mode----662059---"></a>Android デバイスがキオスク モードのときに実行できる複数アプリの構成 <!-- 662059 --> これまでは、Android デバイスがキオスク モードのときに実行できるアプリは 1 つしか設定できませんでした。 アプリ ID やストアの URL を使用するか、すでに管理している Android アプリを選択して、複数のアプリを設定できるようになりました。 詳細については、[キオスク モードの設定](device-restrictions-android.md#kiosk)に関するページをご覧ください。 <!-- ########################## --> ## <a name="april-2017"></a>2017 年 4 月 ### <a name="support-for-managing-the-apple-classroom-app"></a>Apple Classroom アプリの管理のサポート iPad デバイスで iOS Classroom アプリを管理できるようになりました。 クラスと学生の正しいデータで教師の iPad に Classroom アプリをセットアップした後、アプリを使って制御できるように、クラスに登録されている学生の iPad を構成します。 詳しくは、「[Configure iOS education settings](education-settings-configure-ios.md)」 (iOS の教育設定を構成する) をご覧ください。 ### <a name="support-for-managed-configuration-options-for-android-apps----621621---"></a>Android アプリ向けの管理対象構成オプションのサポート <!-- 621621 --> 管理対象構成オプションをサポートする Play ストアの Android アプリを、Intune で構成できるようになりました。 この機能は、アプリによってサポートされる構成値の一覧を表示できるようにし、値を構成できるガイド付きの使いやすい UI を提供します。 ### <a name="new-android-policy-for-complex-pins----722069---"></a>複雑な暗証番号 (PIN) に対する新しい Android ポリシー <!-- 722069 --> Android 5.0 以降を搭載しているデバイスの Android デバイス プロファイルに、数値複素数タイプの必須[パスワード](device-restrictions-android.md#password)を設定できるようになりました。 反復する値や連続する値 (1111 や 1234 など) を含む暗証番号 (PIN) をデバイスのユーザーが作成しないようにするには、この設定を使います。 ### <a name="additional-support-for-android-for-work-devices"></a>Android for Work デバイスの追加サポート - **パスワードと仕事用プロファイルの設定を管理する** <!-- 612808 --> この新しい Android for Work デバイス制限ポリシーにより、管理対象の Android for Work デバイスで、パスワードと仕事用プロファイルの設定を管理できるようになりました。 - **仕事用プロファイルと個人プロファイル間でのデータ共有を許可する** <!-- 1045102 --> この Android for Work デバイス制限プロファイルには、仕事用プロファイルと個人用プロファイルでのデータ共有の設定ができる新しいオプションが用意されました。 - **仕事用プロファイルと個人プロファイルの間でのコピーと貼り付けを制限する** <!-- 1046094 --> Android for Work デバイス用の新しいカスタム デバイス プロファイルでは、仕事用アプリと個人用アプリの間でのコピーと貼り付け操作を許可するかどうかを制限できます。 詳細については、[Android for Work 用のデバイスの制限](device-restrictions-android-for-work.md)に関するページをご覧ください。 ### <a name="assign-lob-apps-to-ios-and-android-devices----1057568---"></a>iOS デバイスと Android デバイスに LOB アプリを割り当てる <!-- 1057568 --> [iOS](lob-apps-ios.md) 用 (.ipa ファイル) と [Android](lob-apps-android.md) 用 (.apk ファイル) の基幹業務 (LOB) アプリを、ユーザーまたはデバイスに割り当てることができるようになりました。 ### <a name="new-device-policies-for-ios----723774-723815-723826-723830---"></a>iOS 用の新しいデバイス ポリシー <!-- 723774, 723815, 723826, 723830 --> - **ホーム画面のアプリ** - [iOS デバイスのホーム画面](home-screen-settings-ios.md)に表示されるアプリを制御します。 このポリシーはホーム画面のレイアウトを変更しますが、アプリの展開は行いません。 - **AirPrint デバイスへの接続** - iOS デバイスのエンド ユーザーが接続できる [AirPrint デバイス](air-print-settings-ios-macos.md) (ネットワーク プリンター) を制御します。 - **AirPlay デバイスへの接続** - iOS デバイスのエンド ユーザーが接続できる [AirPlay デバイス](airplay-settings-ios.md) (Apple TV など) を制御します。 - **ロック画面のカスタム メッセージ** - ユーザーの iOS デバイスのロック画面に表示されるカスタム メッセージを構成して、既定のメッセージと置き換えます。 詳しくは、「[iOS デバイスで紛失モードをアクティブ化する](device-lost-mode.md)」を参照してください。 ### <a name="restrict-push-notifications-for-ios-apps----723767---"></a>iOS アプリのプッシュ通知を制限する <!-- 723767 --> Intune のデバイス制限プロファイルでは、iOS デバイスに対して次の[通知設定](app-notification-settings-ios.md)を構成できるようになりました。 - 指定したアプリの通知を完全に有効または無効にします。 - 指定したアプリの通知センターでの通知を有効または無効にします。 - アラートの種類を、**なし**、**バナー**、または**モーダル アラート**に指定します。 - このアプリに対してバッジを許可するかどうかを指定します。 - 通知サウンドを許可するかどうかを指定します。 ### <a name="configure-ios-apps-to-run-in-single-app-mode-autonomously----737837---"></a>単一アプリ モードで自律的に実行するように iOS アプリを構成する <!-- 737837 --> Intune のデバイス プロファイルを使って、[自律的シングル App モード](device-restrictions-ios.md#autonomous-single-app-mode-supervised-only)で指定したアプリを実行するように iOS デバイスを構成できるようになりました。 このモードを構成した場合、指定したアプリが実行されると、デバイスはそのアプリだけを実行できるようにロックされます。 たとえば、ユーザーがデバイスでテストを受けられるようにアプリを構成するような場合です。 アプリのアクションが完了した場合、または管理者がこのポリシーを削除した場合、デバイスは通常の状態に戻ります。 ### <a name="configure-trusted-domains-for-email-and-web-browsing-on-ios-devices----723765---"></a>iOS デバイスでメールと Web ブラウザー用の信頼されたドメインを構成する <!-- 723765 --> iOS デバイス制限プロファイルから、次の[ドメイン設定](device-restrictions-ios.md#domains)を構成できるようになりました。 - **[マークされていないメール ドメイン]** - ユーザーが送信または受信するメールのうち、ここで指定したドメインと一致しないものは、信頼されていないメールとしてマークされます。 - **[管理された Web ドメイン]** - ここで指定した URL からダウンロードされたドキュメントは、管理されているものと見なされます (Safari のみ)。 - **[Safari パスワードの自動入力ドメイン]** - ユーザーは、ここで指定したパターンに一致する URL からのパスワードのみを Safari に保存できます。 この設定を使うには、デバイスが監視モードであり、複数ユーザー用に構成されていない必要があります。 (iOS 9.3 以降) ### <a name="vpp-apps-available-in-ios-company-portal----748782---"></a>iOS ポータル サイトで使用できる VPP アプリ <!-- 748782 --> **利用可能な**インストールとして、iOS ボリューム購入 (VPP) アプリをエンド ユーザーに割り当てられるようになりました。 エンド ユーザーがアプリをインストールするには、Apple ストア アカウントが必要です。 ### <a name="synchronize-ebooks-from-apple-vpp-store----800878---"></a>Apple VPP ストアから電子ブックを同期する <!-- 800878 --> Intune と、Apple ボリューム購入プログラム ストアから購入した[本を同期](vpp-apps-ios.md)し、ユーザーに割り当てることができるようになりました。 ### <a name="multi-user-management-for-samsung-knox-standard-devices----971988---"></a>Samsung KNOX Standard デバイスのマルチ ユーザー管理 <!-- 971988 --> Samsung KNOX Standard を実行するデバイスが、Intune による[マルチ ユーザー管理](android-enroll.md)のサポート対象になりました。 つまり、エンド ユーザーは Azure Active Directory の資格情報を使ってデバイスのサインインとサインアウトを行うことができ、デバイスは使用中かどうかに関わらず一元管理されます。 サインインしたエンド ユーザーはアプリにアクセスできます。ポリシーがあれば、それが適用されます。 ユーザーがサインアウトすると、すべてのアプリ データがクリアされます。 ### <a name="additional-windows-device-restriction-settings----818566---"></a>追加の Windows デバイス制限設定 <!-- 818566 --> 追加の Microsoft Edge ブラウザー サポート、デバイス ロック画面のカスタマイズ、スタート メニューのカスタマイズ、Windows スポットライト検索セットの壁紙、プロキシ設定など、追加の [Windows デバイス制限設定](device-restrictions-windows-10.md)のサポートが追加されました。 ### <a name="multi-user-support-for-windows-10-creators-update----822547---"></a>Windows 10 Creators Update のマルチユーザー サポート <!-- 822547 --> Windows 10 Creators Update を実行し Azure Active Directory ドメインに参加しているデバイスの[マルチユーザー管理](windows-enroll.md)のサポートが追加されました。 つまり、異なる標準ユーザーが Azure AD 資格情報でデバイスにログインすると、ユーザー名に割り当てられているすべてのアプリとポリシーを受け取ります。 現時点では、アプリのインストールのようなセルフサービスのシナリオにポータル サイトは使用できません。 ### <a name="fresh-start-for-windows-10-pcs---1004830---"></a>Windows 10 PC の Fresh Start<!-- 1004830 --> Windows 10 PC で、新しい [Fresh Start デバイス アクション](device-fresh-start.md)が使用できるようになりました。 このアクションを発行すると、PC にインストールされたすべてのアプリが削除され、PC は Windows の最新バージョンに自動的に更新されます。 この機能は、新しい PC に付属することの多い事前インストール済み OEM アプリを削除するのに使うことができます。 このデバイス アクションを発行するときにユーザー データを保持するかどうかを構成できます。 ### <a name="additional-windows-10-upgrade-paths----903672---"></a>Windows 10 の追加アップグレード パス <!-- 903672 --> 以下のエディションの Windows 10 にも、[エディション アップグレード ポリシーの作成によりデバイスをアップグレード](edition-upgrade-configure-windows-10.md)できるようになりました。 - Windows 10 Professional - Windows 10 Professional N - Windows 10 Professional Education - Windows 10 Professional Education N ### <a name="bulk-enroll-windows-10-devices----747607---"></a>Windows 10 デバイスを一括登録する <!-- 747607 --> Windows 構成デザイナー (WCD) で Azure Active Directory と Intune に Windows 10 Creators Update を実行する多数のデバイスを参加させることができるようになりました。 Azure AD テナントの [一括 MDM 登録](windows-bulk-enroll.md) を有効にするには、Windows 構成デザイナーを使用して Azure AD テナントにデバイスを参加させるプロビジョニング パッケージを作成し、一括登録と管理を行う会社所有のデバイスにパッケージを適用します。 パッケージがデバイスに適用されると、デバイスは Azure AD に参加し、Intune に登録され、Azure AD ユーザーがログオンできる状態になります。  Azure AD ユーザーはこれらのデバイス上の標準ユーザーであり、割り当て済みのポリシーと必須アプリを受け取ります。 現在のところ、セルフ サービスとポータル サイトのシナリオはサポートされていません。 ### <a name="new-mam-settings-for-pin-and-managed-storage-locations----581122-736644---"></a>暗証番号 (PIN) および管理対象記憶域の場所に対する新しい MAM 設定 <!-- 581122, 736644 --> モバイル アプリケーション管理 (MAM) シナリオに役立つ 2 つの新しいアプリ設定が使用できるようになりました。 - **[Disable app PIN when device PIN is managed (デバイスの PIN が管理されるときはアプリの PIN を無効にする)]** - 登録されたデバイスにデバイス暗証番号 (PIN) が存在するかどうかを検出し、存在する場合は、アプリ保護ポリシーによってトリガーされるアプリ PIN をバイパスします。 この設定を使うと、登録されたデバイスで MAM が有効なアプリケーションを開くユーザーに対して表示される PIN 要求の回数を減らすことができます。 この機能は、Android と iOS の両方で使うことができます。 - **[会社のデータを保存できるストレージ サービスの選択]** - 会社のデータを保存する記憶域の場所を指定できます。 ユーザーは選択したストレージ ロケーション サービスに保存できます。つまり、表示されていない他のすべてのストレージ ロケーション サービスはブロックされます。 サポートされるストレージ ロケーション サービスの一覧は次のとおりです。 - OneDrive - Business SharePoint Online - ローカル ストレージ ### <a name="help-desk-troubleshooting-portal----907448---"></a>ヘルプ デスクのトラブルシューティング ポータル <!-- 907448 --> 新しい[トラブルシューティング ポータル](help-desk-operators.md)を使用すると、ヘルプ デスクと Intune 管理者は、ユーザーと彼らのデバイスを表示して、Intune の技術的な問題を解決するタスクを実行できます。 <!-- ########################## --> ## <a name="march-2017"></a>2017 年 3 月 ### <a name="support-for-ios-lost-mode---431695--"></a>iOS 紛失モードのサポート <!--431695--> iOS 9.3 以降のデバイスについて、Intune で**紛失モード**のサポートが追加されました。 デバイスをロックダウンしてすべての使用を回避し、デバイスのロック画面のメッセージおよび連絡先の電話番号を表示できるようになりました。 エンドユーザーは、管理者が紛失モードを無効にするまで、デバイスのロックを解除することはできません。 紛失モードを有効にした場合、**デバイスを探索する**アクションを使用して、Intune コンソールでマップ上にデバイスの地理的な場所を表示することができます。 会社所有の iOS デバイスを DEP で登録し、監視モードに設定している必要があります。 詳細については、「[Microsoft Intune デバイスの管理とは](device-management.md)」を参照してください。 ### <a name="improvements-to-device-actions-report---677150--"></a>Device Actions レポートの機能強化 <!--677150--> Device Actions レポートの機能が強化され、パフォーマンスが向上しました。 さらに、レポートを状態別にフィルター処理できるようになりました。 たとえば、レポートをフィルター処理して、完了したデバイス アクションのみを表示できます。 ### <a name="custom-app-categories---748805--"></a>カスタム アプリのカテゴリ <!--748805--> Intune に追加するアプリのカテゴリを作成、編集、および割り当てることができるようになりました。 現時点では、カテゴリは英語でのみ指定できます。 [Intune にアプリを追加する方法](apps-add.md)に関するページを参照してください。 ### <a name="assign-lob-apps-to-users-with-unenrolled-devices---748823--"></a>登録していないデバイスを使用しているユーザーに LOB アプリを割り当てる <!--748823--> デバイスが Intune に登録されているかどうかに関係なく、基幹業務アプリをストアからユーザーに割り当てられるようになりました。 ユーザーのデバイスが Intune に登録されていない場合は、ポータル サイト アプリではなく、ポータル Web サイトに移動してインストールする必要があります。 ### <a name="new-compliance-reports---846671--"></a>新しいコンプライアンス レポート <!--846671--> コンプライアンス レポートにより、会社内のコンプライアンスの状況を表示して、社内のユーザーがコンプライアンス関連の問題に直面したときに迅速にトラブルシューティングできるようになりました。 次の情報を表示できます。 - デバイスの総合的なコンプライアンスの状態 - 設定別のコンプライアンスの状態 - ポリシー別のコンプライアンスの状態 これらのレポートを使用して個々のデバイスをドリルダウンし、そのデバイスに影響を与えている特定の設定およびポリシーを確認することもできます。 <!--- You can now create an edition upgrade policy to upgrade devices to the following additional Windows 10 editions: - Windows 10 Professional - Windows 10 Professional N - Windows 10 Professional Education - Windows 10 Professional Education N ---> ### <a name="direct-access-to-apple-enrollment-scenarios---951869--"></a>Apple 登録シナリオへの直接アクセス <!--951869--> Intune では、2017 年 1 月以降に作成された Intune アカウントについて、Azure Portal の Enroll Devices ワークロードを使用して、Apple 登録シナリオに直接アクセスできるようになりました。 これまでは、Apple 登録プレビューは Azure Portal のリンクからのみアクセスが可能でした。 2017 年 1 月より前に作成された Intune アカウントの場合は、これらの機能が Azure で利用可能になるまでの間、1 回限りの移行が必要です。 移行スケジュールはまだ発表されていませんが、詳細はできる限り早く発表します。 既存のアカウントでプレビューにアクセスできない場合は、試用アカウントを作成して、新しいエクスペリエンスをテストすることを強くお勧めします。 <!-- ########################## --> ## <a name="february-2017"></a>2017 年 2 月 ### <a name="ability-to-restrict-mobile-device-enrollment---747600-795782--"></a>モバイル デバイス登録を制限する機能 <!--747600, 795782--> Intune では、登録を許可されるモバイル デバイス プラットフォームを制御する新しい登録制限が追加されています。 Intune では、モバイル デバイス プラットフォームが iOS、macOS、Android、Windows、Windows Mobile に分かれています。 * モバイル デバイスの登録を制限しても、PC クライアントの登録は制限されません。 * iOS と Android のみに、個人所有デバイスの登録をブロックする 1 つの追加オプションがあります。 [この記事](device-enrollment.md)で説明されているように、IT 管理者が明示的に会社所有と指定しない限り、Intune はすべての新しいデバイスを個人所有としてマークします。 ### <a name="view-all-actions-on-managed-devices---677150--"></a>マネージド デバイスのすべての操作を表示 <!--677150--> 新しい__デバイス操作__レポートには、デバイスでの出荷時の設定にリセットなどのリモート操作を実行したユーザーが表示され、さらにその操作の状態が表示されます。 「[デバイス管理とは](device-management.md)」を参照してください。 ### <a name="non-managed-devices-can-access-assigned-apps---664691--"></a>管理されていないデバイスから割り当てられているアプリにアクセス可能 <!--664691--> ポータル Web サイトでの設計変更に伴い、iOS と Android ユーザーは、管理されていないデバイスで "登録なしで使用可能" として割り当てられているアプリをインストールできるようになります。 Intune 資格情報を使用して、ユーザーはポータル Web サイトにログインし、割り当てられているアプリの一覧を表示することができます。 "登録なしで使用可能" なアプリのアプリ パッケージは、ポータル Web サイトからダウンロードできます。 この変更は、インストールするために登録が必要なアプリには影響しません。そのようなアプリをインストールする場合は、デバイスの登録が求められます。 ### <a name="custom-app-categories---748805--"></a>カスタム アプリのカテゴリ <!--748805--> Intune に追加するアプリのカテゴリを作成、編集、および割り当てることができるようになりました。 現時点では、カテゴリは英語でのみ指定できます。 [Intune にアプリを追加する方法](apps-add.md)に関するページを参照してください。 ### <a name="display-device-categories---814654--"></a>デバイス カテゴリを表示する <!--814654--> デバイスの一覧に、列としてデバイス カテゴリを表示できるようになりました。 デバイスのプロパティー ブレードのプロパティー セクションからカテゴリを編集することもできます。 [Intune にアプリを追加する方法](apps-add.md)に関するページを参照してください。 ### <a name="configure-windows-update-for-business-settings---776716--"></a>ビジネス設定向けの Windows Update の構成 <!--776716--> サービスとしての Windows は、Windows 10 の更新プログラムを提供するための新しい方法です。 Windows 10 以降、すべての新しい機能更新プログラムと品質更新プログラムには、以前の更新プログラムすべての内容が含まれます。 つまり、最新の更新プログラムをインストールしている限り、Windows 10 デバイスが完全に最新の状態であることを把握できます。 以前のバージョンの Windows とは異なり、更新プログラムの一部ではなく全体をインストールすることが必要になります。 Windows Update for Business を使用することで、デバイスのグループに対して個々の更新プログラムを承認する必要がなくなるため、更新プログラム管理エクスペリエンスを簡略化できます。 更新プログラムの展開戦略を構成することで環境内のリスクを引き続き管理でき、さらに Windows Update により更新プログラムが適切なタイミングでインストールされるようになります。 Microsoft Intune では、デバイスでの更新プログラムの設定を構成でき、また更新プログラムのインストールを遅らせることができます。 Intune では更新プログラムは格納されず、更新プログラムのポリシー割り当てのみが格納されます。 デバイスは更新プログラムのため Windows Update に直接アクセスします。**Windows 10 更新プログラム リング**を構成し管理するには Intune を使用します。 更新プログラム リングには、Windows 10 更新プログラムがインストールされるタイミングと方法を構成する設定のグループが含まれています。 詳しくは、「[ビジネス設定向けの Windows Update の構成](windows-update-for-business-configure.md)」をご覧ください。
77.957475
776
0.77456
yue_Hant
0.462613
d9f2c5c559184a888e5bc3f53cb4ed75c98a4bb9
421
md
Markdown
README.md
enlighten-series/DomainDictionary
eaec9af6e940991982074d0e95970668d55e8b4f
[ "Apache-2.0" ]
2
2018-01-11T01:40:17.000Z
2018-05-10T00:16:31.000Z
README.md
enlighten-series/DomainDictionary
eaec9af6e940991982074d0e95970668d55e8b4f
[ "Apache-2.0" ]
70
2017-10-17T00:46:32.000Z
2018-08-27T08:03:22.000Z
README.md
enlighten-series/DomainDictionary
eaec9af6e940991982074d0e95970668d55e8b4f
[ "Apache-2.0" ]
null
null
null
# DomainDictionary ## 概要 業務知識、ドメイン情報をシンプルに管理するアプリです。 ## ライブデモ オンラインでアプリを試すことができます。 https://domaindictionary-demo.herokuapp.com/ ## 導入手順 Wikiページに記載しています。 [導入手順](https://github.com/enlighten-series/DomainDictionary/wiki/%E5%B0%8E%E5%85%A5%E6%89%8B%E9%A0%86) ## ビルド状況 [![master](https://travis-ci.org/enlighten-series/DomainDictionary.svg?branch=master)](https://travis-ci.org/enlighten-series/DomainDictionary)
17.541667
143
0.760095
yue_Hant
0.534312
d9f3033caad4e2b8570101d7564a4cfd47090cae
1,508
md
Markdown
README.md
yogeshpadekar/TweetNotification
cf97bab931337a2b771eba0b8ca9175e2fc60d2f
[ "MIT" ]
null
null
null
README.md
yogeshpadekar/TweetNotification
cf97bab931337a2b771eba0b8ca9175e2fc60d2f
[ "MIT" ]
null
null
null
README.md
yogeshpadekar/TweetNotification
cf97bab931337a2b771eba0b8ca9175e2fc60d2f
[ "MIT" ]
null
null
null
# TweetNotification The app searches for the tweets for the given hashtag and when the app is in background, it notifies for any new tweets for that hashtag # Prerequisites 1. Make sure that at least one twitter account is configured in Twitter settings 2. App works on iPhone and iPod running an iOS version not earlier than 8.0 # Steps to use 1. Open the file TweetNotification.xcworkspace to run the project. 2. Make sure that target 'TwitterNotification' is selected to run the project and click Run button. 3. Enter the hashtag to search for (without #) 4. The app will show latest 10 tweets with the given hashtag. 5. Put the app in the background 6. Now if the app receives any tweets containing the same hash tag then it will schedule a local notification and fire it after 3 seconds # Screenshots ### Launch Screen ![Launch screen](https://github.com/yogeshpadekar/TweetNotification/blob/master/Screenshots/Simulator%20Screen%20Shot%2006-Nov-2016%2C%206.17.52%20PM.png) ### Home Screen ![Home screen](https://github.com/yogeshpadekar/TweetNotification/blob/master/Screenshots/Simulator%20Screen%20Shot%2006-Nov-2016%2C%206.17.59%20PM.png) ### Tweet List ![Tweet List](https://github.com/yogeshpadekar/TweetNotification/blob/master/Screenshots/Simulator%20Screen%20Shot%2006-Nov-2016%2C%2011.59.10%20PM.png) ### Tweet Notification ![Tweet Notification](https://github.com/yogeshpadekar/TweetNotification/blob/master/Screenshots/Simulator%20Screen%20Shot%2006-Nov-2016%2C%206.14.38%20PM.png)
48.645161
159
0.793103
eng_Latn
0.831213
d9f3209362cca37b221906da216a7d36d8e9c8d4
2,401
md
Markdown
docs/Education/user_actions/Lend/hard_borrow.md
emilson0407/kava
c80b2d1ae24a1a12db3c00aca80a88c840f8f326
[ "Apache-2.0" ]
null
null
null
docs/Education/user_actions/Lend/hard_borrow.md
emilson0407/kava
c80b2d1ae24a1a12db3c00aca80a88c840f8f326
[ "Apache-2.0" ]
2
2022-02-23T16:44:11.000Z
2022-02-24T00:41:44.000Z
docs/Education/user_actions/Lend/hard_borrow.md
emilson0407/kava
c80b2d1ae24a1a12db3c00aca80a88c840f8f326
[ "Apache-2.0" ]
null
null
null
# Borrow Borrow tokens from the hard protocol ## Command ``` kava tx hard borrow <amount> <flags> ``` Using ```kava``` call the ```tx``` subcommand followed by the module name which is```hard```, then define the action which is ```borrow``` and finally follow up with required arguments or flags. ### Arguments position|name|expects |--|--|--| 1|amount| amount & name (no spaces) ### Example ``` kava tx hard borrow 1000000000ukava --from <key> ``` ### Options ``` -a, --account-number uint The account number of the signing account (offline mode only) -b, --broadcast-mode string Transaction broadcasting mode (sync|async|block) (default "sync") --dry-run ignore the --gas flag and perform a simulation of a transaction, but don't broadcast it --fees string Fees to pay along with transaction; eg: 10uatom --from string Name or address of private key with which to sign --gas string gas limit to set per-transaction; set to "auto" to calculate required gas automatically (default 200000) (default "200000") --gas-adjustment float adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored (default 1) --gas-prices string Gas prices to determine the transaction fee (e.g. 10uatom) --generate-only Build an unsigned transaction and write it to STDOUT (when enabled, the local Keybase is not accessible and the node operates offline) -h, --help help for borrow --indent Add indent to JSON response --keyring-backend string Select keyring's backend (os|file|test) (default "os") --ledger Use a connected Ledger device --memo string Memo to send along with transaction --node string <host>:<port> to tendermint rpc interface for this chain (default "tcp://localhost:26657") -s, --sequence uint The sequence number of the signing account (offline mode only) --trust-node Trust connected full node (don't verify proofs for responses) (default true) -y, --yes Skip tx broadcasting prompt confirmation ``` ### Options inherited from parent commands ``` --chain-id string Chain ID of tendermint node ```
48.02
194
0.649729
eng_Latn
0.988873
d9f35bf3e2ecc86e0de4b648a8610251e2b72539
393
md
Markdown
docs-ref-conceptual/storagerp/SRP_Error_Codes_Check_Storage_Account_Name_Availability.md
faicalsaid/azure-docs-rest-apis-public
7aa35aa43aa0caab2786c9613dfbd97f3841827f
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs-ref-conceptual/storagerp/SRP_Error_Codes_Check_Storage_Account_Name_Availability.md
faicalsaid/azure-docs-rest-apis-public
7aa35aa43aa0caab2786c9613dfbd97f3841827f
[ "CC-BY-4.0", "MIT" ]
3
2019-02-27T12:45:59.000Z
2019-07-13T04:49:17.000Z
docs-ref-conceptual/storagerp/SRP_Error_Codes_Check_Storage_Account_Name_Availability.md
faicalsaid/azure-docs-rest-apis-public
7aa35aa43aa0caab2786c9613dfbd97f3841827f
[ "CC-BY-4.0", "MIT" ]
8
2018-10-23T13:56:32.000Z
2021-03-12T16:55:10.000Z
# Error Codes for Check Storage Account Name Availability These are the error codes for the Check Storage Account Name Availability API. | Code | HTTP Status | Description | |----------------------|-----------------|-----------------------------------------| | SubscriptionNotFound | Not Found (404) | The subscription specified is not found.|
56.142857
84
0.516539
eng_Latn
0.945957
d9f370ea989c871d3a637348965a919b211a3ace
560
md
Markdown
documentation/app/documents/api/get-account-permissions.md
xnt/Loyalty-Commerce-Platform
0d9878bc29bae7c42e808b19865f6b91e1a02079
[ "BSD-3-Clause" ]
17
2015-05-20T22:47:02.000Z
2020-05-15T10:32:43.000Z
documentation/app/documents/api/get-account-permissions.md
xnt/Loyalty-Commerce-Platform
0d9878bc29bae7c42e808b19865f6b91e1a02079
[ "BSD-3-Clause" ]
3
2020-09-05T02:50:37.000Z
2021-05-09T09:41:48.000Z
documentation/app/documents/api/get-account-permissions.md
xnt/Loyalty-Commerce-Platform
0d9878bc29bae7c42e808b19865f6b91e1a02079
[ "BSD-3-Clause" ]
10
2015-09-14T06:05:31.000Z
2020-02-14T18:55:47.000Z
### Get Account Permissions Retrieves the list of accounts that have permission to access the application and its resources. #### Parameters <table> <thead> <tr> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td>app-id</td> <td>The identifier of the application.</td> </tr> </tbody> </table> #### Returns The account permissions for the application if the application exists, otherwise returns an [error](./?doc=reference-manual#errors).
19.310345
132
0.5875
eng_Latn
0.8822
d9f37334e235aa160415d9ac279991557f861c96
162
md
Markdown
model/Core/Properties/verifiedUsing.md
davaya/spec-v3-template
505a29dc8b01a42b4e8ae72158e60abda03de034
[ "CC0-1.0" ]
2
2021-07-13T01:09:30.000Z
2021-07-13T18:16:25.000Z
model/Core/Properties/verifiedUsing.md
davaya/spec-v3-template
505a29dc8b01a42b4e8ae72158e60abda03de034
[ "CC0-1.0" ]
8
2021-06-30T08:14:14.000Z
2021-09-03T15:38:24.000Z
model/Core/Properties/verifiedUsing.md
davaya/spec-v3-template
505a29dc8b01a42b4e8ae72158e60abda03de034
[ "CC0-1.0" ]
2
2021-06-25T15:19:04.000Z
2021-07-19T19:38:27.000Z
# verifiedUsing ## Summary TODO ## Description A verifiedUsing is TODO ## Metadata - name: verifiedUsing - Nature: ObjectProperty - Range: IntegrityMethod
9.529412
24
0.740741
eng_Latn
0.561159
d9f38ea9e6755d65d054d7ec590868be2f9a6da1
1,137
md
Markdown
README.md
madgoods/madseed
c67829a41a71f471f3ed0510c345039c0edf394e
[ "MIT" ]
2
2016-12-30T02:36:09.000Z
2016-12-30T02:36:13.000Z
README.md
madgoods/bp-gulp-angular2
c67829a41a71f471f3ed0510c345039c0edf394e
[ "MIT" ]
1
2016-10-15T22:45:33.000Z
2016-12-30T02:34:36.000Z
README.md
madgoods/bp-gulp-angular2
c67829a41a71f471f3ed0510c345039c0edf394e
[ "MIT" ]
null
null
null
# MAD SEED Easy boilerplate to config front-end web with ANGULAR 2 FINAL RELEASE. We also use gulp, ts, postcss, stylus, , webpack and more ## INSTALL ``` npm install ``` ## CREATE AND RUN DEVELOP MODE ``` gulp dev ``` #### ADD OPTIONAL ANGULAR LIBRARIES ``` npm install @angular/router@3.1.0 --save npm install @angular/forms@2.1.0 --save npm install @angular/http@2.1.0 --save npm install @angular/upgrade@2.0.2 --save npm install angular-in-memory-web-api@0.1.5 --save ``` #### FILE STRUCTURE ``` |_scr |_ app |_ styles |_ views |_ img |_ fonts |_ media ``` ## CREATE AND RUN DISTRIBUTION MODE ``` gulp dist ``` ## UTILITIES Testing on the best source map of webpack http://survivejs.com/webpack/developing-with-webpack/enabling-sourcemaps/ ``` devtool: 'source-map' //5.76s devtool: 'eval-source-map' //5.00s devtool: 'cheap-module-eval-source-map' //4.70s devtool : 'cheap-eval-source-map' //4.32s devtool : 'eval' //4.22s ``` BECOME MADNESS!
17.765625
74
0.583993
yue_Hant
0.454661
d9f3a0498f2672238170964383612d90c6aeda13
4,140
md
Markdown
docs/analysis-services/multidimensional-models/bi-wizard-add-dimension-intelligence-to-a-dimension.md
kirabr/sql-docs.ru-ru
08e3b25ff0792ee0ec4c7641b8960145bbec4530
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/analysis-services/multidimensional-models/bi-wizard-add-dimension-intelligence-to-a-dimension.md
kirabr/sql-docs.ru-ru
08e3b25ff0792ee0ec4c7641b8960145bbec4530
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/analysis-services/multidimensional-models/bi-wizard-add-dimension-intelligence-to-a-dimension.md
kirabr/sql-docs.ru-ru
08e3b25ff0792ee0ec4c7641b8960145bbec4530
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Добавление логики измерений к измерению | Документы Microsoft ms.date: 05/02/2018 ms.prod: sql ms.technology: analysis-services ms.custom: multidimensional-models ms.topic: conceptual ms.author: owend ms.reviewer: owend author: minewiskan manager: kfile ms.openlocfilehash: ad714bfefa8010664a8105eebf1f45d63799847c ms.sourcegitcommit: c12a7416d1996a3bcce3ebf4a3c9abe61b02fb9e ms.translationtype: MT ms.contentlocale: ru-RU ms.lasthandoff: 05/10/2018 ms.locfileid: "34027211" --- # <a name="bi-wizard---add-dimension-intelligence-to-a-dimension"></a>Мастер бизнес-Аналитики — Добавление логики измерений к измерению [!INCLUDE[ssas-appliesto-sqlas](../../includes/ssas-appliesto-sqlas.md)] Добавьте расширение логики измерений к кубу или измерению, чтобы задать для измерения стандартный бизнес-тип. Данное расширение также указывает соответствующие типы атрибутов измерения. Клиентские приложения могут использовать эти характеристики типа при анализе данных. Чтобы добавить логику измерений, используйте мастер бизнес-аналитики и выберите параметр **Определить логику операций с измерениями** на странице **Выбор расширения** . После этого мастер проведет по шагам, позволяющим выбрать измерение, к которому необходимо применить логику измерений, а также определить атрибуты для выбранного измерения. ## <a name="selecting-a-dimension"></a>Выбор измерения На первой странице **Параметры логики операций с измерениями** мастера указывается измерение, к которому необходимо применить логику измерений. Добавление расширения логики измерений к выбранному измерению приведет к изменениям измерения. Эти изменения будут наследоваться всеми кубами, включающими выбранное измерение. > [!NOTE] > При выборе пункта **Счет** в качестве измерения указывается логика операций со счетами для измерения. Дополнительные сведения см. в разделе [Добавление логики операций со счетами к измерению](../../analysis-services/multidimensional-models/bi-wizard-add-account-intelligence-to-a-dimension.md). ## <a name="specifying-dimension-attributes"></a>Указание атрибутов измерения Выбор, сделанный на странице **Определение логики операций с измерениями** в списке **Тип измерения** , задает свойство измерения **Type** . Свойство **Type** предоставляет данные серверам и клиентским приложениям о содержании измерения. Некоторые параметры предоставляют клиентским приложениям только справочные сведения; такие параметры необязательны. Другие параметры, такие как Accounts или Time, определяют конкретные режимы и могут быть востребованы для реализации конкретных расширений бизнес-аналитики. Например, среда SQL Server Management Studio использует тип измерения для определения измерения «Валюта» и установки соответствующих правил конвертации валюты. Параметром по умолчанию, устанавливаемым для **Тип измерения** , является **Обычный**, что не дает представления о содержимом измерения. Выбрав тип измерения, во вкладке **Атрибуты измерения**столбца **Включить** установите флажок рядом с каждым стандартным типом атрибута, которому соответствует определенный атрибут в измерении. В столбце **Атрибут измерения** разверните раскрывающийся список и выберите атрибут в измерении, соответствующий выбранному типу атрибута. При выборе атрибута из этого списка устанавливается свойство атрибута **Type** для атрибутов. Например, необходимо добавить логику измерений к измерению «Учетные записи». В списке **Тип измерения**выберите пункт **Учетные записи**. Затем, если у измерения есть атрибуты **Тип учетной записи** и **Описание учетной записи** , в столбце **Включить** установите флажки напротив типов учетной записи **Имя учетной записи** и **Тип учетной записи** . В столбце **Атрибут измерения** свяжите эти типы учетной записи с атрибутами измерения **Описание учетной записи** и **Тип учетной записи** соответственно. ## <a name="see-also"></a>См. также [Определение логика операций со временем с использованием мастера бизнес-аналитики](../../analysis-services/multidimensional-models/define-time-intelligence-calculations-using-the-business-intelligence-wizard.md)
98.571429
810
0.801208
rus_Cyrl
0.965704
d9f3c3b31c51e116f972aa52fb72859636dded7d
498
md
Markdown
src/079-passcode-derivation/problem.md
xfbs/ProjectEulerRust
e26768c56ff87b029cb2a02f56dc5cd32e1f7c87
[ "MIT" ]
1
2018-01-26T21:18:12.000Z
2018-01-26T21:18:12.000Z
src/079-passcode-derivation/problem.md
xfbs/ProjectEulerRust
e26768c56ff87b029cb2a02f56dc5cd32e1f7c87
[ "MIT" ]
3
2017-12-09T14:49:30.000Z
2017-12-09T14:59:39.000Z
src/079-passcode-derivation/problem.md
xfbs/ProjectEulerRust
e26768c56ff87b029cb2a02f56dc5cd32e1f7c87
[ "MIT" ]
null
null
null
# Problem 79: Passcode derivation A common security method used for online banking is to ask the user for three random characters from a passcode. For example, if the passcode was 531278, they may ask for the 2nd, 3rd, and 5th characters; the expected reply would be: 317. The text file, keylog.txt, contains fifty successful login attempts. Given that the three characters are always asked for in order, analyse the file so as to determine the shortest possible secret passcode of unknown length.
55.333333
71
0.801205
eng_Latn
0.999779
d9f46d1a71a08bdec4fb7dbf8a71ef08c8773288
882
md
Markdown
_posts/Coincidence_of_Memory/2002-01-03-Wooed-her-like-a-dolphin.md
junesirius/ViggoArt
6795c2e02bc9c0769cdabf3043efa0d8ad98cc9b
[ "CC-BY-4.0" ]
null
null
null
_posts/Coincidence_of_Memory/2002-01-03-Wooed-her-like-a-dolphin.md
junesirius/ViggoArt
6795c2e02bc9c0769cdabf3043efa0d8ad98cc9b
[ "CC-BY-4.0" ]
null
null
null
_posts/Coincidence_of_Memory/2002-01-03-Wooed-her-like-a-dolphin.md
junesirius/ViggoArt
6795c2e02bc9c0769cdabf3043efa0d8ad98cc9b
[ "CC-BY-4.0" ]
null
null
null
--- layout: post title: Wooed Her Like a Dolphin (poem) date: 2002-01-03 categories: ["Coincidence of Memory"] characters: tags: ["poem", "English", "untitled", "1996"] origin: ["Coincidence of Memory"] pov: description: published: true --- Wooed her like a dolphin, treats her like tune. She blackens, tries experiencing nothing. He looks for her without touching, makes pinpricks in her furtive nakedness, like a hyena. <br> Flooded plains may remind her of startled fish, sunken palaces lit by moons and moons. He does not know what she's thinking, doesn't know what's worse: believing she's come straight from heaven or nowhere at all. <br> She is willing to continue feeding him himself; calls that living on her own terms, sage in houses they promise to build each other with views on every side and enough curtain to sleep through it all. (1996)
13.569231
45
0.738095
eng_Latn
0.999455
d9f4d85d0e2d27227bff1ebdd142cf11ea148bc8
37
md
Markdown
docs/frodo/sample-frodo-project.md
amirmasoudabdol/Bilbo
b6a20725116a76c16173f17c6ca3615a38c3fdba
[ "Apache-2.0" ]
null
null
null
docs/frodo/sample-frodo-project.md
amirmasoudabdol/Bilbo
b6a20725116a76c16173f17c6ca3615a38c3fdba
[ "Apache-2.0" ]
null
null
null
docs/frodo/sample-frodo-project.md
amirmasoudabdol/Bilbo
b6a20725116a76c16173f17c6ca3615a38c3fdba
[ "Apache-2.0" ]
null
null
null
--- title: "Sample Frodo Project" ---
12.333333
29
0.621622
eng_Latn
0.841998
d9f5145fd074c3296b29f9e94dd49b81eac1213a
2,958
markdown
Markdown
_posts/2014-07-13-project-6.markdown
MicroRefact/Microrefact.github.io
e11aaf9187b0aa9906cedccde48a374c157f3d7d
[ "Apache-2.0" ]
null
null
null
_posts/2014-07-13-project-6.markdown
MicroRefact/Microrefact.github.io
e11aaf9187b0aa9906cedccde48a374c157f3d7d
[ "Apache-2.0" ]
null
null
null
_posts/2014-07-13-project-6.markdown
MicroRefact/Microrefact.github.io
e11aaf9187b0aa9906cedccde48a374c157f3d7d
[ "Apache-2.0" ]
null
null
null
--- title: HotelManageSystem subtitle: layout: default modal-id: 6 date: 2014-07-15 img: diagram/hotel.svg thumbnail: githubPerfilGreen.png proposed: proposed/hotel.jpg proposed2: proposed/hotel2.jpg diagram: http://www.plantuml.com/plantuml/svg/xLhjRXCv5FtFK_G91agRKYI4A4bRpQf0D-t2RvCuC32ninudRRJYtTSpdNHwxEDuLgbKhOJunJtdVjphOqzdudUL5SOkv-MpXPZy5D_atekzDs_ET3cLvktRlN-U3KjHLNililoirDfSIRCg9jBPVzqZrqRAZtgAneOzrCeQNPRI01QDDDPwFYobK6CvqMRACHAK-6vXfGAmodA2eclOOMWPouMk2glDEd07Y1GLMADLzXWiIKPOF4EQysbfhrnifwLq7i1XLfzrJVkiAHcpZQGLHIcd_obS3yhe-bDGzyXg78Yoqip4H3u_dIzAlPQo7Kdk_XjXvcuyavyntdENzld8DRJ-A2UogeHPawJzGvqlPMLZxWr8t1EzqKHDAJp07TQjJn3Wu-cNN5LMACUbAugRblentQ4RrliWJmYUtjeVrMKJwsySu8RHfMkmN_S7w3uxGFUpznDXfdo028R0IEZGI6YjNi7ebiwtdyoiD2VMIZUr3tfQpDOdYqNPp4egUsbqBJjjmbXicWvhGutamhf0Hg_aHL4vaqUhLyNOzsvAhSEfccv9zkTIchLV-XTjVivAVVDPc49yBN5MpR9i6Bxd0z5lA975IEYUCrtpmjYvcn-IshBk8o72bGPgUidKz3A39a0q3gGpS7Oe0epO8-0y4VeIOP3G57FQvdQlzWlzhL29F2YP5lmWrJBcTsjFVeZRiQmMMbLOtvMJPQ7LNxR0SRIA7SbPeGhh6D7O4rdMtfLdhZT10_gbd6aptvxAQmrEFvmrNv5TFK1qZvW4zn5_7W7htEZbOgnB5EtZ1_nVZdeaz5ENb7Pvek7-BkktHtn_rC_ZxYW8eUuXZrYFn_W1UumVP2oYC-SFJYq0QZiK3r3KnRKSs5pHWGqVe4WUwlbNVGl8UocK_uWxW9bt_V6gaTnry2Zild_7zMJshs3tKUGG-x7fMCeJndxaq7mZ0WF-5iSjUiYswA7JHlkQ1viBG7Zbv3YtiZuSxiopmip7SYABXUMkhX40BeMNEL4t_sX2yhGyFzy7PwttFXZn3GmzaczWX0g7TWzM91we20P3bCTysBXwkQK-IC3WkYo8eMOHuNf7Hl3IZBeVCDqFiirp4AQ9I6Y5zeW7QX51a3G2GdE0FAy6i0AO6DTwDvVq6mQo4feVaBym04l-XN74bl4ekpPY9KilAQBCX5rx88wT9IA8Kp1tyQrYPgMvq_kMhrFWOfj0bmtKVMPYkOG6gtzW0TXxyOxuKRGhC_rnwGYK2ol05n0F4qHGVuXn_G4ZVT2yOWfzbTquBpe3XzKH0mCi8WO8kA5KMmSs7mUv9g-r5MLDmGyoRS1huT3kzod0KEARUD5GyIZ3xyBO09ZurhH2APKVM413UUuGiFrfOF9TJfVbwKggI0D0IQOaE-BnEo2q2obMFS85P-uEFSE61OHiMCI6efHgAWmWVHubnsoZ7cSFkwyz041BTmX7Fl8Vt_qAaJhW8GDkMSHmdxT8lhrYfBT6Dsfcvt_W7yFv2-buiS431y3qTaOggln9cB0HaOJAHOHh41cfnybhfjBNMUIiGM0aD62RhTA0i7JS7pL5SHmSSdorGWrDUbcdft2y9wkZ6AgwWHlx9gWFfkoaVy1Oxsx1nx9QblQFIYkU3LS5DXUPBgxJZbvfyU_2nESBilXcGXBPJ81qdlwFqVGwptvpRm8d0L3xtehsNCKyHlhABI3Q_FsDQ7CX0C91eZfS5EtUazkHUhYhFqbe6wGuNAe8HkF6ZRQkd9Wz5ehxfShdrUDaqSHlaw07Z_LTttHjV2dKkIdAS01toyzdgGBw5hPtJOI0aMZeuol9Tu8Z0bQRQsv71wyhxWBNSk0J5RbuGE_cfAdiCzOsVgV4_WvjuTluxSUkoEqPVdrclxbzzSbCswc5PXIKZzAXEqBUqnya10WyoqEOAtC__eaJQA0Z4fEtrUzcoVvBEcbtzK6KmgnX7WZ1CdG0b0DedWm9GoOOZ9aI-A3n9q12ZnPD7gm8fWTyG0Tya5teIfvhFQreQaV8xnauCjy_OeOn0R8z71_XGRzc3scpXzbvJSP6FR0j2f4yWD09QlL1OXfPJQovccaV0SL06P4k-7m8fTx0_jW6T6o3xAnGTG5tBzBD0vnbvyosNAGDZHHMDlWT5U6yPvYGbiBPpXtmYr0y02urPw9IU5FfVhP0iUbtvpWzNF14HmSupzDq_3M9q_jjrIEgkQFinDZ2fR8Z8sxg7M2M4rl0kveZ3PULrVFDtRH2V3DYFXHg9QeqxrmgQOIh7AadBisgi6kIr_rx9zLqEI-V_Gi0 alt: image-alt project-date: https://anonymous.4open.science/r/HotelManageSystemMs-F87C client: https://github.com/NiuPiFiveTeam/HotelManageSystem category: Web Development description: Lorem ipsum dolor sit amet, usu cu alterum nominavi lobortis. At duo novum diceret. Tantas apeirian vix et, usu sanctus postulant inciderint ut, populo diceret necessitatibus in vim. Cu eum dicam feugiat noluisse. ---
155.684211
2,350
0.948614
yue_Hant
0.369808
d9f538a296d6c77e305c9aedf79d2479839e8c31
6,132
md
Markdown
README.md
pnc/jerg
2073e046c3e33be65dfe1c2c883e8729d95d7073
[ "MIT" ]
17
2015-01-11T07:10:04.000Z
2020-02-12T10:31:04.000Z
README.md
ddossot/jerg
2073e046c3e33be65dfe1c2c883e8729d95d7073
[ "MIT" ]
null
null
null
README.md
ddossot/jerg
2073e046c3e33be65dfe1c2c883e8729d95d7073
[ "MIT" ]
5
2015-08-29T23:42:10.000Z
2021-12-22T19:02:49.000Z
<pre> ___ _ __ _____ ___ (_ | \ ___) | \ ) ____) | | | (__ | ) / / __ _ | | | __) | / ( ( ( \ ( |_| | | (___ | |\ \ \ \__) ) _\ /__/ )_| |_\ \___) (__ </pre> # jerg - JSON Schema to Erlang Records Generator ## WAT? `jerg` generates this: % Monetary price % Intended to be used embedded in other schemas -record(price, { currency_code :: binary(), amount :: number() }). % Product (Short View) % Intended to be used in search results -record(product_short, { % Numeric object identity, set to -1 at creation time id = -1 :: integer(), name :: binary(), list_price :: #price{}, discount_price :: #price{} }). % Product Category -record(product_category, { % Numeric object identity, set to -1 at creation time id = -1 :: integer(), name :: binary() }). % Product (Full View) % Intended to be used when full description is needed -record(product_full, { % Numeric object identity, set to -1 at creation time id = -1 :: integer(), name :: binary(), list_price :: #price{}, discount_price :: #price{}, description :: binary(), categories :: list(#product_category{}) }). out of that: <TABLE> <TBODY> <TR> <TH>category.json</TH> </TR> <TR> <TD> <PRE>{ "title": "Product Category", "recordName": "product_category", "type": "object", "extends" : { "$ref": "identified_object.json" }, "properties": { "name": { "type": "string" } } }</PRE> </TD> </TR> <TR> <TH>identified_object.json</TH> </TR> <TR> <TD> <PRE>{ "title": "Identity field for all objects", "description" : "Intended to be extended by identified objects", "type": "object", "abstract" : "true", "properties": { "id": { "description" : "Numeric object identity, set to -1 at creation time", "type": "integer", "default" : -1 } } }</PRE> </TD> </TR> <TR> <TH>price.json</TH> </TR> <TR> <TD> <PRE>{ "title": "Monetary price", "description" : "Intended to be used embedded in other schemas", "type": "object", "properties": { "currency_code": { "type": "string" }, "amount": { "type": "number" } } }</PRE> </TD> </TR> <TR> <TH>product_full.json</TH> </TR> <TR> <TD> <PRE>{ "title": "Product (Full View)", "description" : "Intended to be used when full description is needed", "type": "object", "extends" : { "$ref": "product_short.json" }, "properties": { "description": { "type": "string" }, "categories": { "type" : "array", "items" : { "$ref": "category.json" } } } }</PRE> </TD> </TR> <TR> <TH>product_short.json</TH> </TR> <TR> <TD> <PRE>{ "title": "Product (Short View)", "description" : "Intended to be used in search results", "type": "object", "extends" : { "$ref": "identified_object.json" }, "properties": { "name": { "type": "string" }, "list_price": { "$ref": "price.json" }, "discount_price": { "$ref": "price.json" } } }</PRE> </TD> </TR> </TBODY> </TABLE> ## Features `jerg` supports: - cross-references for properties and collection items (ie the `$ref` property), - default values, - integer enumerations (other types can not be enumerated per limitation of the Erlang type specification). `jerg` also supports a few extensions to JSON schema: - `extends`: to allow a schema to extend another one in order to inherit all the properties of its parent (and any ancestors above it), - `abstract`: to mark schemas that actually do not need to be output as records because they are just used through references and extension, - `recordName`: to customize the name of the record generated from the concerned schema definition. ## Build `jerg` is built with [rebar](https://github.com/basho/rebar). Run: rebar get-deps compile rebar escriptize skip_deps=true ## Usage $ jerg Usage: jerg [-s <source>] [-t [<target>]] [-p <prefix>] [-v] -s, --source Source directory or file. -t, --target Generation target. Use - to output to stdout. [default: include/json_records.hrl] -p, --prefix Records name prefix. -v, --version Display version information and stop. `jerg` is intended to be used as part of your build chain in order to produce Erlang records right before compilation starts. If you use `rebar`, this is done by adding the following to your `rebar.config`: {pre_hooks, [{compile, "jerg -s priv/json_schemas"}]}. This assumes that your JSON schemas are located in `priv/json_schemas` and you're OK with outputting the generated records to `include/json_records.hrl`. ## What next? - Use [json_rec](https://github.com/justinkirby/json_rec) to serialize and deserialize JSON to and from Erlang records. - Use [jesse](https://github.com/klarna/jesse) to validate JSON data against JSON schema. ## Limitations `jerg` doesn't support the following: - Embedded object definitions: for now all objects must be defined as top level schema files, - Hierarchical organization of schema files, - URL and self references to schema files, - Cyclic schema dependencies (_to support it, a potential approach would be to introduce an `any()` type in a dependency cycle in order to break it_), - Additional properties. #### Copyright 2013 - David Dossot - MIT License
26.093617
153
0.545499
eng_Latn
0.928139
d9f666a9fab8469663859e5a980fb93e0157e491
7,014
md
Markdown
docs/ios/get-started/objective-c-developers/primer.md
changeworld/xamarin-docs.ja-jp
85ed7d2149f66966844dfc98b6d3ff1b0874e4a7
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/ios/get-started/objective-c-developers/primer.md
changeworld/xamarin-docs.ja-jp
85ed7d2149f66966844dfc98b6d3ff1b0874e4a7
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/ios/get-started/objective-c-developers/primer.md
changeworld/xamarin-docs.ja-jp
85ed7d2149f66966844dfc98b6d3ff1b0874e4a7
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Objective-C 開発者向けの C# 入門書 description: このドキュメントでは、Objective-C 開発者向けに C# について説明します。 プロトコルとインターフェイス、カテゴリと拡張メソッド、フレームワークとアセンブリ、セレクターと名前付きパラメーターなどを考察しながら、2 つの言語を比較します。 ms.prod: xamarin ms.assetid: 00285CBD-AE5E-4126-8F22-6B231B9467EA ms.technology: xamarin-ios author: davidortinau ms.author: daortin ms.date: 06/05/2017 ms.openlocfilehash: 56ee74e7a276edc960d2251bd33ccb90c1fa3cb4 ms.sourcegitcommit: b0ea451e18504e6267b896732dd26df64ddfa843 ms.translationtype: HT ms.contentlocale: ja-JP ms.lasthandoff: 04/13/2020 ms.locfileid: "80070374" --- # <a name="c-primer-for-objective-c-developers"></a>Objective-C 開発者向けの C# 入門書 _Xamarin.iOS では、C# で記述されたプラットフォームに依存しないコードをプラットフォーム間で共有できます。ただし、既存の iOS アプリケーションは既に作成されている Objective-C コードを活用できます。この記事は、Xamarin と C# 言語への移行を検討している Objective-C 開発者向けの簡単な入門となります。_ Objective-C で開発された iOS および macOS アプリケーションでは、プラットフォーム固有のコードが必要ない場所で C# を利用することにより、Xamarin のメリットを得られます。そのようなコードは、Apple 以外のデバイスで使用できます。 Web サービス、JSON と XML の解析、カスタム アルゴリズムなどをクロスプラットフォーム方式で使用できます。 Objective-C の既存の資産を維持しながら Xamarin を利用するには、バインディングと呼ばれる Xamarin のテクノロジでこれを C# に公開できます。バインディングは、Objective-C コードをマネージドな C# の世界に公開します。 また、必要な場合はコードを行ごとに C# に移植することもできます。 ただし、バインディングと移植のどちらのアプローチであっても、既存の Objective-C コードを Xamarin.iOS で効果的に活用するには Objective-C と C# の知識がある程度必要です。 ## <a name="objective-c-interop"></a>Objective-C との相互運用 現在、Xamarin.iOS を使用して Objective-C から呼び出すことができる C# のライブラリを作成するメカニズムはサポートされていません。 その主な理由は、バインディングに加えて Mono ランタイムも必要であるためです。 ただし、ユーザー インターフェイスを含め、Objective-C のロジックの大部分を作成できます。 これを行うには、ライブラリに Objective-C コードをラップし、それに対するバインディングを作成します。 Xamarin.iOS はアプリケーションのブートストラップに必要です (つまり、`Main` エントリ ポイントを作成する必要があります)。 その後、他のロジックを Objective-C に作成して、バインディングによって (または P/Invoke を使用して) C# に公開されます。 これにより、Objective-C にプラットフォーム固有のロジックを保持し、C# でプラットフォームに依存しない部分を開発できます。 この記事は、両方の言語の主要な類似点の一部に注目すると共に、いくつかの違いを比較しており、既存の Objective-C コードへのバインディングか C# への移植かにかかわらず、Xamarin.iOS を使用する C# に移行する際の入門として利用できます。 バインディングの作成について詳しくは、[Objective-C のバインディング](~/ios/platform/binding-objective-c/index.md)に関する記事に記載されている他のドキュメントをご覧ください。 ## <a name="language-comparison"></a>言語の比較 Objective-C と C# は、構文とランタイムの観点からはまったく異なる言語です。 Objective-C は動的言語であり、メッセージ パッシング スキームを使用します。一方、C# は静的に型指定されます。 構文の観点では、Objective-C は Smalltalk に似ており、C# はその基本的な構文の多くが Java から派生していますが、ここ数年で成熟し、Java を超える多くの機能が含まれています。 とは言うものの、Objective-C と C# のいくつかの言語機能は機能的に似ています。 C# から Objective-C コードへのバインディングを作成する場合、または Objective-C を C# に移植する場合は、こうした類似性を理解することが役立ちます。 ### <a name="protocols-vs-interfaces"></a>プロトコルとインターフェイス Objective-C と C# はどちらも単一継承言語です。 ただし、どちらの言語も、特定のクラスでの複数のインターフェイスの実装をサポートしています。 Objective-C では、これらの論理インターフェイスは "*プロトコル*" と呼ばれ、C# では "*インターフェイス*" と呼ばれます。 実装の観点からは、C# インターフェイスと Objective-C プロトコルの主な違いは、Objective-C ではオプションのメソッドを使用できることです。 詳しくは、「[Events, Delegates and Protocols](~/ios/app-fundamentals/delegates-protocols-and-events.md)」(イベント、デリゲート、プロトコル) の記事をご覧ください。 ### <a name="categories-vs-extension-methods"></a>カテゴリと拡張メソッド Objective-C では、"*カテゴリ*" を使用して、実装コードがないクラスにメソッドを追加できます。 C# では、"*拡張メソッド*" と呼ばれるものを通じて同様の概念を利用できます。 拡張メソッドでは、クラスに静的メソッドを追加できます。C# の静的メソッドは Objective-C のクラス メソッドに似ています。 たとえば、次のコードは `ScrollToBottom` という名前のメソッドを `UITextView` クラスに追加します。このクラスは UIKit から Objective-C の `UITextView` クラスにバインドされているマネージド クラスです。 ```csharp public static class UITextViewExtensions { public static void ScrollToBottom (this UITextView textView) { // code to scroll textView } } ``` その後、`UITextView` のインスタンスがコードに作成されると、メソッドは次に示すようにオートコンプリートの一覧で使用可能になります。 ![](primer-images/01-extensionmethodintellisense.png "The method available in the autocomplete") 拡張メソッドが呼び出されるときに、インスタンスはこの例の `textView` のような引数に渡されます。 ### <a name="frameworks-vs-assemblies"></a>フレームワークとアセンブリ Objective-C は、関連するクラスをフレームワークと呼ばれる特殊なディレクトリにパッケージ化します。 一方、C# と .NET では、アセンブリはプリコンパイルされたコードの再利用可能な部分を提供するために使用されます。 iOS の外部での環境では、アセンブリには、実行時に Just-In-Time (JIT) でコンパイルされる中間言語コード (IL) が含まれています。 ただし、App Store でリリースされた iOS アプリケーションで、JIT コンパイルのコードを実行することはできません。 そのため、Xamarin を使用する iOS をターゲットとする C# コードは Ahead Of Time (AOT) でコンパイルされ、アプリケーション バンドルに含まれるメタデータ ファイルと共に単一の UNIX 実行可能ファイルを生成します。 ### <a name="selectors-vs-named-parameters"></a>セレクターと名前付きパラメーター Objective-C メソッドでは、その性質上、セレクターにパラメーターが含まれます。 たとえば、`AddCrayon:WithColor:` などのセレクターは、各パラメーターがコードで使用される場合に何を意味するかを明確にします。 C# はオプションで名前付き引数もサポートします。 たとえば、名前付き引数を使用した C# の同様のコードは次のようになります。 ```csharp AddCrayon (crayon: myCrayon, color: UIColor.Blue); ``` C# 言語ではこのサポートがバージョン 4.0 で追加されましたが、実際にはめったに使用されません。 ただし、コードで明示する必要がある場合は、これでサポートされます。 ### <a name="headers-and-namespaces"></a>ヘッダーと名前空間 C のスーパー セットである Objective-C は、実装ファイルから独立したパブリック宣言用のヘッダーを使用します。 C# では、ヘッダー ファイルは使用されません。 Objective-C とは異なり、C# コードは名前空間に含まれます。 一部の名前空間で使用可能なコードを含める場合は、実装ファイルの先頭にディレクティブを使用して追加するか、完全な名前空間で型を修飾します。 たとえば、次のコードには `UIKit` 名前空間が含まれているため、その名前空間内のすべてのクラスを実装に使用できます。 ```csharp using UIKit; namespace MyAppNamespace { // implementation of classes } ``` また、上記のコードの namespace キーワードは、実装ファイル自体に対して使用する名前空間を設定します。 複数の実装ファイルが同じ名前空間を共有する場合、ディレクティブの使用に名前空間を含める必要はありません。暗黙的に指定されます。 ### <a name="properties"></a>プロパティ Objective-C と C# の両方に、アクセサー メソッドに関連する高度な抽象化を提供するプロパティの概念があります。 Objective-C では、@property コンパイラ ディレクティブはアクセサー メソッドを効果的に生成するために使用されます。 これに対し、C# には、言語自体にプロパティのサポートが含まれます。 次の例に示すように、C# プロパティは、バッキング フィールドにアクセスする長いスタイルを使用するか、より短い自動プロパティ構文を使用して実装できます。 ```csharp // automatic property syntax public string Name { get; set; } // property implemented with a backing field string address; public string Address { get { // could add additional code here return address; } set { address = value; } } ``` ### <a name="static-keyword"></a>Static キーワード *static* キーワードの意味は、Objective-C と C# とで大きく異なります。 Objective-C の静的関数は、関数のスコープを現在のファイルに制限するために使用されます。 一方、C# では、スコープは *public*、*private*、*internal* キーワードを通じて管理されます。 Objective-C の変数に static キーワードが適用される場合、変数は関数呼び出し間でその値を保持します。 C# にも static キーワードがあります。 メソッドに適用する場合は、事実上、Objective-C での `+` 修飾子と同じ効果があります。 つまり、クラス メソッドを作成します。 同様に、フィールド、プロパティ、イベントなどの他のコンストラクトに適用される場合は、その型の任意のインスタンスではなく、そのコンストラクトを宣言した型の一部になります。 静的クラスにすることもできます。その場合、クラスで定義されているすべてのメソッドが静的である必要があります。 ### <a name="nsarray-vs-list-initialization"></a>NSArray とリストの初期化 Objective-C には、`NSArray` で使用されるリテラル構文が含まれるようになり、初期化が簡単になっています。 一方、C# には `List` と呼ばれる "*汎用的*" で高度な型があります。このため、リストに保持する型は、リストを作成するコード (C++ のテンプレートのように) で提供できます。 さらに、リストでは、次に示すように自動初期化構文がサポートされます。 ```csharp MyClass object1 = new MyClass (); MyClass object2 = new MyClass (); List<MyClass> myList = new List<MyClass>{ object1, object2 }; ``` ### <a name="blocks-vs-lambda-expressions"></a>ブロックとラムダ式 Objective-C は、"*ブロック*" を使用してクロージャを作成します。クロージャでは、そこで囲まれている状態を使用できる関数をインラインで作成できます。 C# には、ラムダ式を使用する同様の概念があります。 C# では、ラムダ式は次のように `=>` 演算子で作成されます。 ```csharp (args) => { // implementation code }; ``` ラムダ式について詳しくは、Microsoft の [C# プログラミング ガイド](https://msdn.microsoft.com/library/vstudio/bb397687.aspx)のページをご覧ください。 ## <a name="summary"></a>まとめ この記事では、Objective-C と C# 間でさまざまな言語機能を比較しました。 場合によっては、ラムダ式とブロックや、拡張メソッドとカテゴリなど、両方の言語に存在する類似機能について説明しました。 さらに、C# の名前空間と static キーワードの意味など、言語間で異なる部分を比較しました。
46.450331
443
0.801397
yue_Hant
0.537119
d9f73a774a84ee387fe493a2dd63f8bb098e8799
2,019
md
Markdown
sdk-api-src/content/sdoias/ne-sdoias-vendorproperties.md
amorilio/sdk-api
54ef418912715bd7df39c2561fbc3d1dcef37d7e
[ "CC-BY-4.0", "MIT" ]
null
null
null
sdk-api-src/content/sdoias/ne-sdoias-vendorproperties.md
amorilio/sdk-api
54ef418912715bd7df39c2561fbc3d1dcef37d7e
[ "CC-BY-4.0", "MIT" ]
null
null
null
sdk-api-src/content/sdoias/ne-sdoias-vendorproperties.md
amorilio/sdk-api
54ef418912715bd7df39c2561fbc3d1dcef37d7e
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- UID: NE:sdoias._VENDORPROPERTIES title: VENDORPROPERTIES (sdoias.h) description: The values of the VENDORPROPERTIES enumeration type specify properties of objects in the vendors collection. helpviewer_keywords: ["PROPERTY_NAS_VENDOR_ID","VENDORPROPERTIES","VENDORPROPERTIES enumeration [Network Policy Server]","_sdo_vendorproperties","nps.SDO_vendorproperties","sdo.vendorproperties","sdoias/PROPERTY_NAS_VENDOR_ID","sdoias/VENDORPROPERTIES"] old-location: nps\SDO_vendorproperties.htm tech.root: Nps ms.assetid: 0449833a-d1a1-4ea0-901e-362557eb481d ms.date: 12/05/2018 ms.keywords: PROPERTY_NAS_VENDOR_ID, VENDORPROPERTIES, VENDORPROPERTIES enumeration [Network Policy Server], _sdo_vendorproperties, nps.SDO_vendorproperties, sdo.vendorproperties, sdoias/PROPERTY_NAS_VENDOR_ID, sdoias/VENDORPROPERTIES req.header: sdoias.h req.include-header: req.target-type: Windows req.target-min-winverclnt: None supported req.target-min-winversvr: Windows Server 2008 req.kmdf-ver: req.umdf-ver: req.ddi-compliance: req.unicode-ansi: req.idl: SdoIas.idl req.max-support: req.namespace: req.assembly: req.type-library: req.lib: req.dll: req.irql: targetos: Windows req.typenames: VENDORPROPERTIES req.redist: ms.custom: 19H1 f1_keywords: - _VENDORPROPERTIES - sdoias/_VENDORPROPERTIES - VENDORPROPERTIES - sdoias/VENDORPROPERTIES dev_langs: - c++ topic_type: - APIRef - kbSyntax api_type: - HeaderDef api_location: - SdoIas.h api_name: - VENDORPROPERTIES --- # VENDORPROPERTIES enumeration ## -description The values of the <b>VENDORPROPERTIES</b> enumeration type specify properties of objects in the vendors collection. ## -enum-fields ### -field PROPERTY_NAS_VENDOR_ID The SMI Network Management Private Enterprise Code assigned to this vendor by the Internet Assigned Numbers Authority (IANA). ## -see-also <a href="/windows/desktop/api/sdoias/ne-sdoias-iascommonproperties">IASCOMMONPROPERTIES</a> <a href="/windows/desktop/api/sdoias/ne-sdoias-radiusproperties">RADIUSPROPERTIES</a>
28.842857
253
0.801387
yue_Hant
0.725545
d9f76cd5caac89fcb2f315a23fa64912b25d7cd2
498
md
Markdown
_posts/2020-04-23-cudatreelib.md
gyao96/profile
820860a32bfcf5ff06ea724f43c697e4a60b0b9b
[ "MIT" ]
null
null
null
_posts/2020-04-23-cudatreelib.md
gyao96/profile
820860a32bfcf5ff06ea724f43c697e4a60b0b9b
[ "MIT" ]
null
null
null
_posts/2020-04-23-cudatreelib.md
gyao96/profile
820860a32bfcf5ff06ea724f43c697e4a60b0b9b
[ "MIT" ]
1
2020-08-02T23:23:01.000Z
2020-08-02T23:23:01.000Z
--- layout: inner position: left title: 'Parallel Tree Construction Acceleration' date: 2020-04-23 15:56:00 categories: development tags: Rendering CUDA C/C++ featured_image: '/img/posts/03-bvh.png' project_link: 'https://github.com/gyao96/cuda-tree-lib/blob/master/CS267_Final_Report.pdf' button_text: 'Visit Project' button_icon: 'github' lead_text: 'Accelerating ray-traced renderer by constructing hierarchical data structures like Bounding Volume Hierarchy(BVH) and KD trees in parallel.' ---
35.571429
152
0.791165
eng_Latn
0.433455
d9f8beb9925aad305e4f6e6e817858f9d2a81fff
11,872
md
Markdown
docs/2014/analysis-services/multidimensional-models/analysis-management-objects/amo-olap-classes.md
peterkarman1/sql-docs
7569551402944b31cf4d0059f7793903f9546722
[ "CC-BY-4.0", "MIT" ]
1
2020-01-03T02:37:57.000Z
2020-01-03T02:37:57.000Z
docs/2014/analysis-services/multidimensional-models/analysis-management-objects/amo-olap-classes.md
peterkarman1/sql-docs
7569551402944b31cf4d0059f7793903f9546722
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/2014/analysis-services/multidimensional-models/analysis-management-objects/amo-olap-classes.md
peterkarman1/sql-docs
7569551402944b31cf4d0059f7793903f9546722
[ "CC-BY-4.0", "MIT" ]
1
2021-04-05T00:07:53.000Z
2021-04-05T00:07:53.000Z
--- title: "AMO OLAP Classes | Microsoft Docs" ms.custom: "" ms.date: "06/13/2017" ms.prod: "sql-server-2014" ms.reviewer: "" ms.technology: - "analysis-services" - "docset-sql-devref" ms.topic: "reference" helpviewer_keywords: - "Analysis Management Objects, OLAP" - "OLAP [AMO]" - "AMO, OLAP" ms.assetid: 397509b7-a4fb-40de-aa30-c66dc9ed2105 author: minewiskan ms.author: owend manager: craigg --- # AMO OLAP Classes Analysis Management Objects (AMO) OLAP classes help you create, modify, delete, and process cubes, dimensions, and related objects such as Key Performance Indicators (KPIs), actions, and proactive caching. For more information about setting up the AMO programming environment, how to establish a connection with a server, accessing a database or defining data sources and data source views, see [AMO Fundamental Classes](amo-fundamental-classes.md). This topic contains the following sections: - [Dimension Objects](#Dimensions) - [Cube Objects](#Cubes) - [MeasureGroup Objects](#MeasureGroups) - [Partition Objects](#Partition) - [AggregationDesign Objects](#AggregationDesign) - [Aggregation Objects](#Aggregation) - [Action Objects](#Action) - [KPI Objects](#KPI) - [Perspective Objects](#Perspective) - [Translation Objects](#Translation) - [ProactiveCaching Objects](#ProactiveCaching) The following illustration shows the relationship of the classes that are explained in this topic. ![OLAP Classes in AMO](../../../analysis-services/dev-guide/media/amo-olapclasses.gif "OLAP Classes in AMO") ## Basic Classes ### <a name="Dimensions"></a> Dimension Objects A dimension is created by adding it to the dimensions collection of the parent database, and by updating the <xref:Microsoft.AnalysisServices.Dimension> object to the server by using the Update method. To remove a dimension, it has to be dropped by using the Drop method of the <xref:Microsoft.AnalysisServices.Dimension>. Removing a <xref:Microsoft.AnalysisServices.Dimension> from the dimensions collection of the database by using the Remove method does not delete it on the server, just in the AMO object model. A <xref:Microsoft.AnalysisServices.Dimension> object can be processed after it has been created. The <xref:Microsoft.AnalysisServices.Dimension> can be processed using its own process method, or it can be processed with the parent object's process method when the parent object is processed. For more information about methods and properties available, see <xref:Microsoft.AnalysisServices.Dimension> in the <xref:Microsoft.AnalysisServices>. ### <a name="Cubes"></a> Cube Objects A cube is created by adding it to the cubes collection of the database, then updating the <xref:Microsoft.AnalysisServices.Cube> object to the server by using the Update method. The Update method of the cube can include the parameter UpdateOptions.ExpandFull, which ensures that all objects in the cube that were modified will be updated to the server in this update action. To remove a cube, it has to be dropped by using the Drop method of the <xref:Microsoft.AnalysisServices.Cube>. Removing a cube from the collection does not affect the server. A <xref:Microsoft.AnalysisServices.Cube> object can be processed after it has been created. The <xref:Microsoft.AnalysisServices.Cube> can be processed using its own process method, or it can be processed when a parent object processes itself with its own Process method. For more information about methods and properties available, see <xref:Microsoft.AnalysisServices.Cube> in the <xref:Microsoft.AnalysisServices>. ### <a name="MeasureGroups"></a> MeasureGroup Objects A measure group is created by adding it to the measure group collection of the cube, then updating the <xref:Microsoft.AnalysisServices.MeasureGroup> object to the server by using its own Update method. A <xref:Microsoft.AnalysisServices.MeasureGroup> object is removed using its own Drop method. A <xref:Microsoft.AnalysisServices.MeasureGroup> object can be processed after it has been created. The <xref:Microsoft.AnalysisServices.MeasureGroup> can be processed by using its own Process method, or it can be processed when a parent object processes itself with its own Process method. For more information about methods and properties available, see <xref:Microsoft.AnalysisServices.MeasureGroup> in the <xref:Microsoft.AnalysisServices>. ### <a name="Partition"></a> Partition Objects A <xref:Microsoft.AnalysisServices.Partition> object is created by adding it to the partitions collection of the parent measure group, then updating the <xref:Microsoft.AnalysisServices.Partition> object on the server by using the Update method. A <xref:Microsoft.AnalysisServices.Partition> object is removed by using the Drop method. For more information about methods and properties available, see <xref:Microsoft.AnalysisServices.Partition> in the <xref:Microsoft.AnalysisServices>. ### <a name="AggregationDesign"></a> AggregationDesign Objects Aggregation designs are constructed using the AggregationDesign method from an <xref:Microsoft.AnalysisServices.AggregationDesign> object. For more information about methods and properties available, see <xref:Microsoft.AnalysisServices.AggregationDesign> in the <xref:Microsoft.AnalysisServices>. ### <a name="Aggregation"></a> Aggregation Objects An <xref:Microsoft.AnalysisServices.Aggregation> object is created by adding it to the aggregation designs collection of the parent measure group, then updating the parent measure group object on the server by using the Update method. An aggregation is removed from the <xref:Microsoft.AnalysisServices.AggregationCollection> by using the Remove method or the RemoveAt method. For more information about methods and properties available, see <xref:Microsoft.AnalysisServices.Aggregation> in the <xref:Microsoft.AnalysisServices>. ## Advanced Classes Advanced classes provide OLAP functionality beyond building and browsing a cube. The following are some of the advanced classes and the benefits they provide: - Action classes are used to create an active response when browsing certain areas of the cube. - Key Performance Indicators (KPIs) enable comparison analysis between values of data. - Perspectives provide selected views of a single cube, so that users can focus on what is important to them. - Translations allow the cube to be customized to the user locale. - Proactive caching classes can provide a balance between the enhanced performance of MOLAP storage and the immediacy of ROLAP storage, and provide scheduled partition processing. AMO is used to set the definitions for this enhanced behavior, but the actual experience is defined by the browsing client that implements all of these enhancements. ### <a name="Action"></a> Action Objects An <xref:Microsoft.AnalysisServices.Action> object is created by adding it to the actions collection of the cube, then updating the <xref:Microsoft.AnalysisServices.Cube> object to the server by using the Update method. The update method of the cube can include the parameter UpdateOptions.ExpandFull, which ensures that all objects in the cube that were modified will be updated to the server with this update action. To remove an <xref:Microsoft.AnalysisServices.Action> object, it must be removed from the collection and the parent cube must be updated. A cube must be updated and processed before the action can be used from the client. For more information about methods and properties available, see <xref:Microsoft.AnalysisServices.Action> in the <xref:Microsoft.AnalysisServices>. ### <a name="KPI"></a> Kpi Objects A <xref:Microsoft.AnalysisServices.Kpi> object is created by adding it to the KPI collection of the cube, then updating the <xref:Microsoft.AnalysisServices.Cube> object to the server by using the Update method. The Update method of the cube can include the parameter UpdateOptions.ExpandFull, which ensures that all objects in the cube that were modified will be updated to the server with this update action. To remove a <xref:Microsoft.AnalysisServices.Kpi> object, it must be removed from the collection, then and the parent cube must be updated. A cube must be updated and processed before the KPI can be used. For more information about methods and properties available, see <xref:Microsoft.AnalysisServices.Kpi> in the <xref:Microsoft.AnalysisServices>. ### <a name="Perspective"></a> Perspective Objects A <xref:Microsoft.AnalysisServices.Perspective> object is created by adding it to the perspective collection of the cube, then updating the <xref:Microsoft.AnalysisServices.Cube> object to the server by using the Update method. The Update method of the cube can include the parameter UpdateOptions.ExpandFull, which ensures that all objects in the cube that were modified will be updated to the server with this update action. To remove a <xref:Microsoft.AnalysisServices.Perspective> object, it must be removed from the collection, then the parent cube must be updated. A cube has to be updated and processed before the perspective can be used. For more information about methods and properties available, see <xref:Microsoft.AnalysisServices.Perspective> in the <xref:Microsoft.AnalysisServices>. ### <a name="Translation"></a> Translation Objects A <xref:Microsoft.AnalysisServices.Translation> object is created by adding it to the translation collection of the desired object, then updating the closest major parent object to the server by using the Update method. The Update method of the closest parent object can include the parameter UpdateOptions.ExpandFull, which ensures that all children objects that were modified will be updated to the server with this update action. To remove a <xref:Microsoft.AnalysisServices.Translation> object, it must be removed from the collection, then the closest parent object must be updated. For more information about methods and properties available, see <xref:Microsoft.AnalysisServices.Translation> in the <xref:Microsoft.AnalysisServices>. ### <a name="ProactiveCaching"></a> ProactiveCaching Objects A <xref:Microsoft.AnalysisServices.ProactiveCaching> object is created by adding it to the proactive caching object collection of the dimension or partition, then updating the dimension or partition object to the server by using the Update method. To remove a <xref:Microsoft.AnalysisServices.ProactiveCaching> object, it must be removed from the collection, then the parent object must be updated. A dimension or partition must be updated and processed before proactive caching is enabled and ready to be used. For more information about methods and properties available, see <xref:Microsoft.AnalysisServices.ProactiveCaching> in the <xref:Microsoft.AnalysisServices>. ## See Also <xref:Microsoft.AnalysisServices> [Introducing AMO Classes](amo-classes-introduction.md) [Programming AMO OLAP Basic Objects](programming-amo-olap-basic-objects.md) [Programming AMO OLAP Advanced Objects](programming-amo-olap-advanced-objects.md) [Logical Architecture &#40;Analysis Services - Multidimensional Data&#41;](../olap-logical/understanding-microsoft-olap-logical-architecture.md) [Database Objects &#40;Analysis Services - Multidimensional Data&#41;](../olap-logical/database-objects-analysis-services-multidimensional-data.md)
73.283951
436
0.766846
eng_Latn
0.967591
d9f99558708411f14d57ffb973a39aee6a18d710
256
md
Markdown
README.md
meherranjan/lickapprise
c0e472eb57b45b8eba99065bd673e3ebc3da3d41
[ "MIT" ]
null
null
null
README.md
meherranjan/lickapprise
c0e472eb57b45b8eba99065bd673e3ebc3da3d41
[ "MIT" ]
null
null
null
README.md
meherranjan/lickapprise
c0e472eb57b45b8eba99065bd673e3ebc3da3d41
[ "MIT" ]
null
null
null
# LickApprise _(wip)_ A webapp to organise, share and discover guitar licks from YouTube. Lickapprise lets you create a collection of licks based on sections of YT videos which you can tab yourself or discover &amp; add other's licks to your own library.
85.333333
233
0.792969
eng_Latn
0.999578
d9f9ae0b84985f4cb55c192353e9af7c8745de48
64
md
Markdown
App/README.md
rishabh-997/Innerve2k19
c21f5fe86ff3cace443a9f7f1456582b8db61a8a
[ "MIT" ]
6
2019-10-07T15:32:44.000Z
2019-10-15T04:44:12.000Z
App/README.md
SandeepKumarAuddy/Innerve2k19
fc3484a42bba4a6f47843e037c3621f9c7a2eec4
[ "MIT" ]
null
null
null
App/README.md
SandeepKumarAuddy/Innerve2k19
fc3484a42bba4a6f47843e037c3621f9c7a2eec4
[ "MIT" ]
4
2019-10-07T05:44:44.000Z
2019-10-22T13:15:03.000Z
# Medidoc-App This repo contains app code for Innerve Hackathon
21.333333
49
0.8125
eng_Latn
0.959408
d9fac68755aa4163b45d1f73b0eb5b8293067922
1,413
md
Markdown
2020/09/26/2020-09-26 22:05.md
zhzhzhy/WeiBoHot_history
32ce4800e63f26384abb17d43e308452c537c902
[ "MIT" ]
3
2020-07-14T14:54:15.000Z
2020-08-21T06:48:24.000Z
2020/09/26/2020-09-26 22:05.md
zhzhzhy/WeiBoHot_history
32ce4800e63f26384abb17d43e308452c537c902
[ "MIT" ]
null
null
null
2020/09/26/2020-09-26 22:05.md
zhzhzhy/WeiBoHot_history
32ce4800e63f26384abb17d43e308452c537c902
[ "MIT" ]
null
null
null
2020年09月26日22时数据 Status: 200 1.王传君百花奖最佳男配角 微博热度:3437803 2.乌克兰宣布26日为全国哀悼日 微博热度:2816633 3.一起摇对极光水 微博热度:2812814 4.黄晓明百花奖最佳男主角 微博热度:2812086 5.小花生 微博热度:1146056 6.全民光盘挑战 微博热度:1142119 7.周冬雨百花奖最佳女主角 微博热度:1113246 8.金钟奖 微博热度:1075845 9.95后代餐消费者年投入3000元以上 微博热度:938336 10.菅义伟表示日本下定决心明年办奥运 微博热度:912234 11.快乐大本营 微博热度:898757 12.现在的文具太高级了 微博热度:898167 13.LGD输了 微博热度:897440 14.初中生刺死霸凌者获刑8年 微博热度:896925 15.张艺兴教薇娅唱湘江水 微博热度:896814 16.明日之子演唱会 微博热度:896639 17.易烊千玺百花奖最佳新人 微博热度:895837 18.这武器很中国 微博热度:895275 19.狗狗趁主人睡觉开冰箱偷吃 微博热度:894436 20.中国银行笔试 微博热度:894002 21.管泽元 微博热度:893437 22.布布坐王一博大腿 微博热度:859015 23.原来温泉蛋是烫出来的 微博热度:821742 24.名创优品指甲油致癌物超标1400多倍 微博热度:733908 25.卡车起火烧毁1吨巧克力 微博热度:733076 26.这就是街舞半决赛 微博热度:732658 27.许光汉柯佳嬿合唱想见你 微博热度:732511 28.昆凌回应与侯佩岑撞彩虹图 微博热度:694049 29.央视揭网游陪玩骗局 微博热度:626745 30.躺着骑的自行车 微博热度:618473 31.进口俄罗斯水产品检出新冠病毒 微博热度:617845 32.谢娜张杰一家四口背影照 微博热度:617493 33.张雨绮 欧巴和我都是可可爱爱的人呢 微博热度:564979 34.无线耳机的最大缺点 微博热度:271480 35.第七批在韩志愿军烈士遗骸归国 微博热度:270484 36.LGD空ban 微博热度:270121 37.周冬雨紫色露背蓬蓬裙 微博热度:260181 38.薇娅张艺兴直播 微博热度:248102 39.交警校门口给小女孩扎头发 微博热度:234652 40.跨界歌王决赛 微博热度:232198 41.说唱新世代 微博热度:218059 42.黄潇第一次battle 微博热度:216249 43.王俊凯主持好稳 微博热度:215670 44.骆驼铁丝缠脚被解救长鸣感谢 微博热度:212632 45.福禄寿马太好听了 微博热度:209039 46.志愿军烈士遗物中发现3枚印章 微博热度:207190 47.其实胃也是有脾气的 微博热度:205001 48.四川黑水县一直升机坠落 微博热度:203075 49.日式英语可以有多好笑 微博热度:200790 50.都江堰3.4级地震 微博热度:198127
6.926471
21
0.782732
yue_Hant
0.259472
d9fb14889a6a429a4f68e75f19ec7ca7fd798df6
1,249
md
Markdown
README.md
ryancdotorg/philips-air-purifier
9b54900d43e1d4e696a8093638abdb9407621b96
[ "MIT" ]
1
2020-03-15T18:29:26.000Z
2020-03-15T18:29:26.000Z
README.md
ryancdotorg/philips-air-purifier
9b54900d43e1d4e696a8093638abdb9407621b96
[ "MIT" ]
null
null
null
README.md
ryancdotorg/philips-air-purifier
9b54900d43e1d4e696a8093638abdb9407621b96
[ "MIT" ]
null
null
null
# philips-air-purifier Python module to connect with Philips air purifiers [![GitHub](https://img.shields.io/github/license/firescry/philips-air-purifier.svg)](LICENSE) [![Build Status](https://travis-ci.com/firescry/philips-air-purifier.svg?branch=master)](https://travis-ci.com/firescry/philips-air-purifier) This module's implementation is based on [py-air-control](https://github.com/rgerganov/py-air-control) command line tool. ## Device compatibility Module works with following Philips devices: * 2000i Series * AC2729 ## Supported features Following features are currently supported: * device discovery in local network (purifier must be already connected to WiFi) * device control: * turn purifier on/off * lock/unlock control panel * read temperature/humidity/PM2.5/allergen index * enable/disable humidifier * set auto mode or fan speed * set desired humidity and light brightness * set a timer and read its status * turn display on/off * set information presented on display (allergen index/PM2.5/humidity) ## Installation Module is not available on pypi.org but may be installed with following pip command: ``` $ pip install git+https://github.com/firescry/philips-air-purifier.git#egg=philips_air_purifier ```
36.735294
141
0.771817
eng_Latn
0.953505
d9fbf4624d79de7cd02d3b2d97f28ee05820f1f6
2,170
md
Markdown
CHANGELOG.md
markmeeus/horde
a7107b78fa7c56364ed74cebe8f35a16721b9e7b
[ "MIT" ]
null
null
null
CHANGELOG.md
markmeeus/horde
a7107b78fa7c56364ed74cebe8f35a16721b9e7b
[ "MIT" ]
null
null
null
CHANGELOG.md
markmeeus/horde
a7107b78fa7c56364ed74cebe8f35a16721b9e7b
[ "MIT" ]
null
null
null
## master - `Horde.Registry.lookup/2` returns `[]` instead of `:undefined` when no match. [#145](https://github.com/derekkraan/horde/pull/145) - `child_spec/1` can be overridden in `Horde.Registry` and `Horde.Supervisor` [#135](https://github.com/derekkraan/horde/pull/135) [#143](https://github.com/derekkraan/horde/pull/143) - Implement `:listeners` option for Horde.Registry. [#142](https://github.com/derekkraan/horde/pull/142) - Fix via tuple usage with meta. [#139](https://github.com/derekkraan/horde/pull/139) ## 0.6.1 - Module-based `Horde.Supervisor` can override `child_spec/1`. [#135](https://github.com/derekkraan/horde/pull/135) - Added guides for handling clustering, process state handoff (during deploys), and special considerations for eventual consistency to the [documentation](https://hexdocs.pm/horde). - `Horde.Supervisor` now uses libring to distribute processes over nodes. [#130](https://github.com/derekkraan/horde/pull/130) - `Horde.Supervisor` publishes metrics with `:telemetry` (`[:horde, :supervisor, :supervised_process_count]`). [#132](https://github.com/derekkraan/horde/pull/132) - `Horde.Supervisor` and `Horde.Registry` now support option `delta_crdt_options`, which you can use to tune your cluster. Also updated to the most recent DeltaCRDT. [#100](https://github.com/derekkraan/horde/pull/100) ## 0.6.0 - `Horde.Supervisor` now behaves more like `DynamicSupervisor`. [#122](https://github.com/derekkraan/horde/pull/122) - `Horde.Registry` sends an exit signal to the process that "loses" when a conflict is resolved. [#118](https://github.com/derekkraan/horde/pull/118) - `Horde.Registry.register/3` returns `{:error, {:already_registered, pid}}` when applicable. This improves compatability with `Elixir.Registry`. [#115](https://github.com/derekkraan/horde/pull/115) - Adds `Horde.Registry.select/2`, which works the same as `Elixir.Registry.select/2`, which will land in Elixir 1.9. [#110](https://github.com/derekkraan/horde/pull/110) - Fixes a bug causing `Horde.Supervisor` to crash if a child process was restarting when `Horde.Supervisor.delete_child/2` was called. [#114](https://github.com/derekkraan/horde/pull/114)
108.5
218
0.753456
eng_Latn
0.53462
d9fc6368531872ad643dcae13c5b918288727e27
1,443
md
Markdown
README.md
zauberzeug/InterfaceBuilder
3f14f5f3daf92659cf2e8f784c907f5394a5db00
[ "Apache-2.0" ]
2
2021-01-15T09:04:15.000Z
2021-05-25T02:42:05.000Z
README.md
zauberzeug/InterfaceBuilder
3f14f5f3daf92659cf2e8f784c907f5394a5db00
[ "Apache-2.0" ]
null
null
null
README.md
zauberzeug/InterfaceBuilder
3f14f5f3daf92659cf2e8f784c907f5394a5db00
[ "Apache-2.0" ]
null
null
null
# InterfaceBuilder InterfaceBuilder is a handy wrapper around Xamrin.Forms to improve the writing of user interface code directly in C# (no XAML). It's a combination of factory pattern (see [UI.cs](https://github.com/perpetual-mobile/InterfaceBuilder/blob/master/InterfaceBuilder/UI.cs)) and the builder pattern (extension methods defined mainly in [ContentConfiguration.cs](https://github.com/perpetual-mobile/InterfaceBuilder/blob/master/InterfaceBuilder/ContentConfiguration.cs)). So you can write: ```csharp var ui = new UI(); MainPage = ui.Page("MainPage", ui.Stack().Vertical().With( ui.Label("A"), ui.Label("B"), ui.Label("C")) ); ``` This package is used in several projects at Perpetual Mobile, licensed under APACHE LICENSE and is hopefully useful to you. We have no proper documentation jet but provide some examples in the Demo project. Have a look at [FundamentalsModule.cs](https://github.com/perpetual-mobile/InterfaceBuilder/blob/master/Demo/FundamentalsModule.cs) to see how we implemented this screen: <img align="center" src="https://github.com/perpetual-mobile/InterfaceBuilder/raw/master/screenshot-fundamentals.png" width=350 /> And to see how to add images look at [ImageModule.cs](https://github.com/perpetual-mobile/InterfaceBuilder/blob/master/Demo/ImageModule.cs): <img align="center" src="https://github.com/perpetual-mobile/InterfaceBuilder/raw/master/screenshot-supporting-images.png" width=350 />
53.444444
354
0.781705
eng_Latn
0.599408
d9fc990aafdb9001ae13a8f556ca09a861667c4d
2,445
md
Markdown
content/tuning/intro/index.md
SimonCqk/website
73acf367c9bf3da946149e8afd5a934523de559e
[ "MIT" ]
null
null
null
content/tuning/intro/index.md
SimonCqk/website
73acf367c9bf3da946149e8afd5a934523de559e
[ "MIT" ]
null
null
null
content/tuning/intro/index.md
SimonCqk/website
73acf367c9bf3da946149e8afd5a934523de559e
[ "MIT" ]
null
null
null
--- title: "Introduction" description: "Introduction" lead: "" date: 2020-11-12T15:22:20+01:00 lastmod: 2020-11-12T15:22:20+01:00 draft: false images: [] menu: tuning: parent: "tuningintro" weight: 100 toc: true --- KubeDL automatically tunes the best container-level configurations before an ML model is deployed as inference services. This auto-configuration workflow is developed as an independent project---**Morphling**. [Github →](https://github.com/alibaba/morphling) ## Morphling Overview Morphling tunes the optimal configurations for your ML/DL model serving deployments. It searches the best container-level configurations (e.g., resource allocations and runtime parameters) by empirical trials, where a few configurations are sampled for performance evaluation. <figure> <img src="stack.png" alt="Morphling Stack" style="width:100%"> <figcaption align = "center"><b>Morphling Workflow.</b></figcaption> </figure> ## Features Key benefits include: - Automated tuning workflows hidden behind simple APIs. - Out of the box ML model serving stress-test clients. - Cloud agnostic and tested on [AWS](https://aws.amazon.com/), [Alicloud](https://us.alibabacloud.com/), etc. - ML framework agnostic and generally support popular frameworks, including [TensorFlow](https://github.com/tensorflow/tensorflow), [PyTorch](https://github.com/pytorch/pytorch), etc. - Equipped with various and customizable hyper-parameter tuning algorithms. ## Core APIs Morphling requires users to specify the `ProflingExperiment` interface for configuration tuning, including: - ML model container (e.g., the Pod template) - performance objective function - tunable configuration parameters with types and search range - sampling algorithms - sampling budget ## Getting started ### Install using YAML files Install Morphling using YAML files. [Go →]({{< ref "install-using-yaml" >}}) ### Examples Run model serving configuration examples. [Go →]({{< ref "quick-start" >}}) ## Workflow See [Morphling Workflow]({{< ref "design" >}}) to check how Morphling tunes ML serving configurations automatically in a Kubernetes-native way. ## Developer Guide To develop/debug Morphling controller manager locally, please check the [Developer Guide]({{< ref "developer-guide" >}}) and [Debug Guide]({{< ref "debug-guide" >}}). ## Community If you have any questions or want to contribute, GitHub issues or pull requests are warmly welcome.
32.171053
191
0.756237
eng_Latn
0.923231
d9fcc5c1ad6c46d85ee3d384f3dba78811a63211
4,782
md
Markdown
docs/azure-data-studio/quickstart-sql-dw.md
huanwnn/sql-docs.zh-tw
1c3423fa4a220bc3d44cc086bb42c21ebec79471
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/azure-data-studio/quickstart-sql-dw.md
huanwnn/sql-docs.zh-tw
1c3423fa4a220bc3d44cc086bb42c21ebec79471
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/azure-data-studio/quickstart-sql-dw.md
huanwnn/sql-docs.zh-tw
1c3423fa4a220bc3d44cc086bb42c21ebec79471
[ "CC-BY-4.0", "MIT" ]
1
2021-01-09T04:04:39.000Z
2021-01-09T04:04:39.000Z
--- title: 連線及查詢 Azure SQL 資料倉儲 titleSuffix: Azure Data Studio description: 本快速入門說明如何使用 Azure Data Studio 連線到 Azure SQL 資料倉儲並執行查詢 ms.prod: sql ms.technology: azure-data-studio ms.reviewer: alayu; sstein ms.topic: quickstart author: yualan ms.author: alayu ms.custom: seodec18; seo-lt-2019 ms.date: 09/24/2018 ms.openlocfilehash: f07d13bc9110b5b9ec96aa17169687f471aeb197 ms.sourcegitcommit: 58158eda0aa0d7f87f9d958ae349a14c0ba8a209 ms.translationtype: HT ms.contentlocale: zh-TW ms.lasthandoff: 03/30/2020 ms.locfileid: "74957105" --- # <a name="quickstart-use-name-sos-to-connect-and-query-data-in-azure-sql-data-warehouse"></a>快速入門:使用 [!INCLUDE[name-sos](../includes/name-sos-short.md)] 連線及查詢 Azure SQL 資料倉儲中的資料 本快速入門示範如何使用 [!INCLUDE[name-sos](../includes/name-sos-short.md)] 連線到 Azure SQL 資料倉儲,然後使用 Transact-SQL 陳述式建立、插入和選取資料。 ## <a name="prerequisites"></a>Prerequisites 若要完成本快速入門,您需要 [!INCLUDE[name-sos](../includes/name-sos-short.md)] 和 Azure SQL 資料倉儲。 - [安裝 [!INCLUDE[name-sos](../includes/name-sos-short.md)]](download.md)。 如果您還沒有 SQL 資料倉儲,請參閱[建立 SQL 資料倉儲](https://docs.microsoft.com/azure/sql-data-warehouse/sql-data-warehouse-get-started-provision)。 請記住伺服器名稱和登入認證! ## <a name="connect-to-your-data-warehouse"></a>連線到您的資料倉儲 使用 [!INCLUDE[name-sos](../includes/name-sos-short.md)]建立與您 Azure SQL 資料倉儲伺服器的連線。 1. 第一次執行 [!INCLUDE[name-sos](../includes/name-sos-short.md)] 時,應該會開啟 [連線] 頁面。 如果沒有看到 [連線] 頁面,請按一下 [伺服器] 提要欄位中的 [新增連線] 或**新增連線**圖示: ![新增連線圖示](media/quickstart-sql-dw/new-connection-icon.png) 2. 本文使用「SQL 登入」 ,但「Windows 驗證」 亦受支援。 使用「您的」 Azure SQL 伺服器的伺服器名稱、使用者名稱和密碼填入欄位如下: | 設定 | 建議的值 | 描述 | | ------------ | ------------------ | ------------------------------------------------- | | **伺服器名稱** | 完整伺服器名稱 | 名稱應如下所示:**sqldwsample.database.windows.net** | | **驗證** | SQL 登入| 本教學課程使用 SQL 驗證。 | | **使用者名稱** | 伺服器系統管理員帳戶 | 這是您在建立伺服器時指定的帳戶。 | | **密碼 (SQL 登入)** | 伺服器系統管理員帳戶的密碼 | 這是您在建立伺服器時指定的密碼。 | | **儲存密碼嗎?** | [是] 或 [否] | 如果您不想要每次都輸入密碼,請選取 [是]。 | | **資料庫名稱** | 保留空白 | 要連線之資料庫的名稱。 | | **伺服器群組** | 選取 <Default> | 如果您已建立伺服器群組,您可以設定為特定伺服器群組。 | ![新增連線圖示](media/quickstart-sql-dw/new-connection-screen.png) 3. 如果您伺服器的防火牆規則沒有允許 Azure Data Studio 進行連線,就會開啟 [建立新的防火牆規則] 表單。 完成表單,以便建立新的防火牆規則。 如需詳細資訊,請參閱[防火牆規則](https://docs.microsoft.com/azure/sql-database/sql-database-firewall-configure)。 ![新增防火牆規則](media/quickstart-sql-dw/firewall.png) 4. 成功連線之後,您的伺服器就會在 [伺服器] 提要欄位中開啟。 ## <a name="create-the-tutorial-data-warehouse"></a>建立教學課程資料倉儲 1. 以滑鼠右鍵按一下您的伺服器,然後在物件總管中選取 [新增查詢] 。 1. 將下列程式碼片段貼到查詢編輯器,然後按一下 [執行] : ```sql IF NOT EXISTS ( SELECT name FROM sys.databases WHERE name = N'TutorialDB' ) CREATE DATABASE [TutorialDB] (EDITION = 'datawarehouse', SERVICE_OBJECTIVE='DW100'); GO ALTER DATABASE [TutorialDB] SET QUERY_STORE=ON GO ``` ## <a name="create-a-table"></a>建立資料表 查詢編輯器仍會連線到 *master* 資料庫,但我們想要在 *TutorialDB* 資料庫中建立資料表。 1. 將連線內容變更為 **TutorialDB**: ![變更內容](media/quickstart-sql-database/change-context.png) 1. 將下列程式碼片段貼到查詢編輯器,然後按一下 [執行] : > [!NOTE] > 您可以在編輯器中將此項目附加至查詢,或覆寫先前的查詢。 請注意,按一下 [執行] 只會執行選取的查詢。 如果沒有選取任何項目,按一下 [執行] 會執行編輯器中的所有查詢。 ```sql -- Create a new table called 'Customers' in schema 'dbo' -- Drop the table if it already exists IF OBJECT_ID('dbo.Customers', 'U') IS NOT NULL DROP TABLE dbo.Customers GO -- Create the table in the specified schema CREATE TABLE dbo.Customers ( CustomerId INT NOT NULL, Name [NVARCHAR](50) NOT NULL, Location [NVARCHAR](50) NOT NULL, Email [NVARCHAR](50) NOT NULL ); GO ``` ## <a name="insert-rows"></a>插入資料列 1. 將下列程式碼片段貼到查詢編輯器,然後按一下 [執行] : ```sql -- Insert rows into table 'Customers' INSERT INTO dbo.Customers ([CustomerId],[Name],[Location],[Email]) SELECT 1, N'Orlando',N'Australia', N'' UNION ALL SELECT 2, N'Keith', N'India', N'keith0@adventure-works.com' UNION ALL SELECT 3, N'Donna', N'Germany', N'donna0@adventure-works.com' UNION ALL SELECT 4, N'Janet', N'United States', N'janet1@adventure-works.com' ``` ## <a name="view-the-result"></a>檢視結果 1. 將下列程式碼片段貼到查詢編輯器,然後按一下 [執行] : ```sql -- Select rows from table 'Customers' SELECT * FROM dbo.Customers; ``` 1. 查詢的結果隨即顯示: ![選取結果](media/quickstart-sql-dw/select-results.png) ## <a name="clean-up-resources"></a>清除資源 此集合中的其他文章都是以本快速入門為基礎來建立。 如果您打算繼續進行後續的快速入門,請勿清除於本快速入門所建立的資源。 如果您不打算繼續進行,請使用下列步驟在 Azure 入口網站中刪除本快速入門所建立的資源。 藉由刪除您不再需要的資源群組,即可清除資源。 如需詳細資訊,請參閱[清除資源](https://docs.microsoft.com/azure/sql-database/sql-database-get-started-portal#clean-up-resources)。 ## <a name="next-steps"></a>後續步驟 現在您已成功連線到 Azure SQL 資料倉儲並執行查詢,請嘗試[程式碼編輯器教學課程](tutorial-sql-editor.md)。
31.88
180
0.674613
yue_Hant
0.798841
d9fd40458a7b0b1023b918a7b7709eaa15dc4050
92
md
Markdown
README.md
drowngut/MySimpleEdit
a4b5cdf9400f1e258e41572acc5680bdb2d0e56a
[ "MIT" ]
null
null
null
README.md
drowngut/MySimpleEdit
a4b5cdf9400f1e258e41572acc5680bdb2d0e56a
[ "MIT" ]
null
null
null
README.md
drowngut/MySimpleEdit
a4b5cdf9400f1e258e41572acc5680bdb2d0e56a
[ "MIT" ]
null
null
null
# MySimpleEdit Simple file editor made with Win32 API written in C++ <img src="/SLAAT.jpg">
23
53
0.73913
eng_Latn
0.716594
d9fe5bd0cb37b30ada34347e45d43f4a50459b81
1,732
md
Markdown
README.md
anushka-DS/NUMPY
f1c8f1bfa23263ca29fa6012feec195672e9379c
[ "MIT" ]
null
null
null
README.md
anushka-DS/NUMPY
f1c8f1bfa23263ca29fa6012feec195672e9379c
[ "MIT" ]
null
null
null
README.md
anushka-DS/NUMPY
f1c8f1bfa23263ca29fa6012feec195672e9379c
[ "MIT" ]
null
null
null
# Numpy Numpy Tutorials Link to official documentation : https://numpy.org/doc/stable/reference/ **NumPy** (short for Numerical Python) provides an efficient interface to store and operate on dense data buffers. In some ways, NumPy arrays are like Python's built-in list type, but NumPy arrays provide much more efficient storage and data operations as the arrays grow larger in size. NumPy arrays form the core of nearly the entire ecosystem of data science tools in Python, so time spent learning to use NumPy effectively will be valuable no matter what aspect of data science interests you. Here are the top four benefits that NumPy can bring to your code: **More speed:** NumPy uses algorithms written in C that complete in nanoseconds rather than seconds. **Fewer loops:** NumPy helps you to reduce loops and keep from getting tangled up in iteration indices. **Clearer code:** Without loops, your code will look more like the equations you’re trying to calculate. **Better quality:** There are thousands of contributors working to keep NumPy fast, friendly, and bug free. Because of these benefits, NumPy is the de facto standard for multidimensional arrays in Python data science, and many of the most popular libraries are built on top of it. Learning NumPy is a great way to set down a solid foundation as you expand your knowledge into more specific areas of data science. ## Useful References https://numpy.org/doc/ https://numpy.org/doc/stable/user/theory.broadcasting.html#array-broadcasting-in-numpy https://realpython.com/how-to-use-numpy-arange/ https://www.youtube.com/watch?v=dEzyaIh-7hs - Video tutorial https://www.youtube.com/watch?v=vN5dAZrS58E - Video tutorial https://numpy.org/
54.125
304
0.7806
eng_Latn
0.992001
8a0029a0625c7a496d65a4cada954a03015b3f52
132
md
Markdown
Servo_distribution_board/Gerber/README.md
mufpga/MicroFPGA-electronics
3e4e31b4e9d33fa253d5808a5eb4e5aefe3a108d
[ "MIT" ]
1
2021-09-24T17:42:52.000Z
2021-09-24T17:42:52.000Z
Servo_distribution_board/Gerber/README.md
mufpga/electronics
3e4e31b4e9d33fa253d5808a5eb4e5aefe3a108d
[ "MIT" ]
null
null
null
Servo_distribution_board/Gerber/README.md
mufpga/electronics
3e4e31b4e9d33fa253d5808a5eb4e5aefe3a108d
[ "MIT" ]
null
null
null
# Gerber files Gerber files were generated from the Altium project and were tested using [gerbv](http://gerbv.geda-project.org/).
26.4
114
0.765152
eng_Latn
0.992832
8a00cc4b5ecbf8d12e53f26da4db7a7f8e0192e3
647
md
Markdown
ui/feed/2020-07-27-developer-access-for-saas-products.md
livioso/cognito-wiki
961af67af4a5513287f615ec21b8371220b71aba
[ "MIT" ]
2
2021-03-10T13:05:36.000Z
2021-03-17T11:27:00.000Z
ui/feed/2020-07-27-developer-access-for-saas-products.md
livioso/cognito-wiki
961af67af4a5513287f615ec21b8371220b71aba
[ "MIT" ]
7
2021-03-09T07:28:25.000Z
2021-07-28T11:35:49.000Z
ui/feed/2020-07-27-developer-access-for-saas-products.md
livioso/cognito-wiki
961af67af4a5513287f615ec21b8371220b71aba
[ "MIT" ]
2
2021-03-10T13:05:41.000Z
2021-07-28T10:14:59.000Z
--- slug: developer-access-for-saas-products title: An Easy Method to Provide Developer API Access for your SaaS Product Users author: Aditya Bhawsingka tags: [saas, api, authorizer] --- For a SaaS product, we needed to allow users to have API access to our product’s services. This enabled users to build custom capabilities by accessing and leveraging our APIs via an authenticated, authorized, and controlled access mechanism. [Here’s how we used AWS Cognito’s authorizer to enable users to have developer API access restricted to their user data using Client Id/Secret](https://www.ignitesol.com/aws-cognito-api-client-key/?ref=cogintowiki).
64.7
242
0.795981
eng_Latn
0.976473
8a00e268763d9a454776af9de109e00ff3f4d797
1,541
md
Markdown
docs/example/delete_multiple_object_zh-CN.md
shanhe-nsccjn/ois-sdk-go
2db813e1a7cd1ab5737c3032a48d6b89a8099ab8
[ "Apache-2.0" ]
null
null
null
docs/example/delete_multiple_object_zh-CN.md
shanhe-nsccjn/ois-sdk-go
2db813e1a7cd1ab5737c3032a48d6b89a8099ab8
[ "Apache-2.0" ]
null
null
null
docs/example/delete_multiple_object_zh-CN.md
shanhe-nsccjn/ois-sdk-go
2db813e1a7cd1ab5737c3032a48d6b89a8099ab8
[ "Apache-2.0" ]
null
null
null
# 删除多个对象 ## 代码片段 使用您的 AccessKeyID 和 SecretAccessKey 初始化 Qingstor 对象。 ```go import ( "github.com/shanhe-nsccjn/ois-sdk-go/v4/config" "github.com/shanhe-nsccjn/ois-sdk-go/v4/service" ) var conf, _ = config.New("YOUR-ACCESS-KEY-ID", "YOUR--SECRET-ACCESS-KEY") var oIs, _ = service.Init(conf) ``` 然后根据要操作的 bucket 信息(zone, bucket name)来初始化 Bucket。 ```go bucketName := "your-bucket-name" zoneName := "pek3b" bucketService, _ := oIs.Bucket(bucketName, zoneName) ``` 然后设置 DeleteObject 方法用到的输入参数(使用 DeleteMultipleObjectsInput 存储)。`Quiet` 指定是否返回被删除的对象列表。 ```go objects := []string{"file_will_be_delete.jpg", "file_will_be_delete.zip"} var keys []*service.KeyType for _, objKey := range objects { key := objKey keys = append(keys, &service.KeyType{ Key: &key, }) } returnDeleteRes := false input := &service.DeleteMultipleObjectsInput{ Objects: keys, Quiet: &returnDeleteRes, } ``` 请注意 DeleteMultipleObjectsInput 中的 field 不是都必须设置的,具体可以参考[官方 API 文档](https://docsv3.shanhe.com/ois/api/bucket/delete_multiple)。 然后调用 DeleteMultipleObjects 方法删除对象。objectKey 设置要删除的对象的 filepath(位于当前 bucket 中)。 ```go if output, err := bucketService.DeleteMultipleObjects(input); err != nil { fmt.Printf("Delete objects(name: %v) failed with given error: %s\n", objects, err) } else { fmt.Printf("The status code expected: 200(actually: %d)\n", *output.StatusCode) fmt.Println("=========== objects been deleted ===========") for _, keyType := range output.Deleted { fmt.Println(*keyType.Key) } } ``` 操作正确返回的话,响应状态码将会是 200。
26.118644
125
0.704737
yue_Hant
0.705294
8a0174da9523d98b3164dc79c8da6052e4bbadd8
4,554
md
Markdown
docs/2014/reporting-services/extensions/data-processing/preparing-to-implement-a-data-processing-extension.md
satoshi-baba-0823/sql-docs.ja-jp
a0681de7e067cc6da1be720cb8296507e98e0f29
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/2014/reporting-services/extensions/data-processing/preparing-to-implement-a-data-processing-extension.md
satoshi-baba-0823/sql-docs.ja-jp
a0681de7e067cc6da1be720cb8296507e98e0f29
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/2014/reporting-services/extensions/data-processing/preparing-to-implement-a-data-processing-extension.md
satoshi-baba-0823/sql-docs.ja-jp
a0681de7e067cc6da1be720cb8296507e98e0f29
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: データ処理拡張機能を実装する準備 | Microsoft Docs ms.custom: '' ms.date: 03/06/2017 ms.prod: sql-server-2014 ms.reviewer: '' ms.technology: - docset-sql-devref - reporting-services-native ms.topic: reference helpviewer_keywords: - interfaces [Reporting Services] - data processing extensions [Reporting Services], implementing ms.assetid: 698817e4-33da-4eb5-9407-4103e1c35247 author: markingmyname ms.author: maghan manager: craigg ms.openlocfilehash: 07cb22de2483722af05324aa3c3524c2ee7a01c2 ms.sourcegitcommit: 3da2edf82763852cff6772a1a282ace3034b4936 ms.translationtype: MT ms.contentlocale: ja-JP ms.lasthandoff: 10/02/2018 ms.locfileid: "48053459" --- # <a name="preparing-to-implement-a-data-processing-extension"></a>データ処理拡張機能を実装する準備 [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] [!INCLUDE[ssRSnoversion](../../../includes/ssrsnoversion-md.md)] データ処理拡張機能を実装する前に、実装するインターフェイスを定義しておく必要があります。 インターフェイスのセット全体にわたって拡張機能固有の実装を行うことができます。<xref:Microsoft.ReportingServices.DataProcessing.IDataReader> インターフェイスや <xref:Microsoft.ReportingServices.DataProcessing.IDbCommand> インターフェイスなど、サブセットだけを実装することもできます。このようなインターフェイスでは、クライアントが **DataReader** オブジェクトとして主に結果セットと対話し、[!INCLUDE[ssRS](../../../includes/ssrs.md)] データ処理拡張機能を結果セットとデータ ソース間のブリッジとして使用します。 データ処理拡張機能は、次の 2 種類の方法のいずれかで実装できます。 - データ処理拡張機能のクラスは [!INCLUDE[msCoName](../../../includes/msconame-md.md)] [!INCLUDE[dnprdnshort](../../../includes/dnprdnshort-md.md)] データ プロバイダー インターフェイスを実装でき、[!INCLUDE[ssRSnoversion](../../../includes/ssrsnoversion-md.md)] によって提供される拡張されたデータ処理拡張機能インターフェイスをオプションで実装できます。 - データ処理拡張機能のクラスは、[!INCLUDE[ssRSnoversion](../../../includes/ssrsnoversion-md.md)] によって提供されるデータ処理拡張機能インターフェイスを実装でき、拡張されたデータ処理拡張機能インターフェイスをオプションで実装できます。 [!INCLUDE[ssRSnoversion](../../../includes/ssrsnoversion-md.md)] データ処理拡張機能が特定のプロパティやメソッドをサポートしない場合は、プロパティやメソッドを非操作として実装します。 クライアントが特定の動作を必要とする場合は、**NotSupportedException** 例外をスローします。 > [!NOTE] > プロパティやメソッドの非操作実装は、実装することを選択したインターフェイスのプロパティとメソッドにのみ適用されます。 オプションのインターフェイスを実装しないことを選択した場合は、そのインターフェイスをデータ処理拡張機能アセンブリから除外してください。 インターフェイスが必須またはオプションのいずれであるかの詳細については、後述する表を参照してください。 ## <a name="required-extension-functionality"></a>必須の拡張機能 [!INCLUDE[ssRSnoversion](../../../includes/ssrsnoversion-md.md)] のすべてのデータ処理拡張機能は、次の機能を提供する必要があります。 - データ ソースへの接続を開きます。 - クエリを分析し、結果セットにフィールド名の一覧を返します。 - データ ソースに対してクエリを実行し、行セットを返します。 - 1 つの値を持つパラメーターをクエリに渡します。 - 行セットの行を反復処理し、データを取得します。 各データ処理拡張は、次の機能を含めるように拡張できます。 - クエリを分析し、クエリで使用したパラメーター名の一覧を返します。 - クエリを分析し、クエリをグループ化するフィールドの一覧を返します。 - クエリを分析し、クエリを並べ替えるフィールドの一覧を返します。 - 接続文字列と無関係なデータ ソースと接続するために、ユーザー名とパスワードを指定します。 - 行セットの行を反復処理し、データ値に関する補助メタデータを取得します。 - サーバーでデータを集計します。 ## <a name="available-extension-interfaces"></a>使用可能な拡張機能インターフェイス 以下は使用可能なインターフェイスの一覧です。実装が必須かどうかも記載されています。 |インターフェイス|説明|実装| |---------------|-----------------|--------------------| |IDbConnection|データソースとの一意のセッションを表します。 クライアント/サーバー データベース システムの場合は、セッションがサーバーとのネットワーク接続と同じことがあります。|必須| |IDbConnectionExtension|[!INCLUDE[ssRS](../../../includes/ssrs.md)] データ処理拡張機能によって実装できる、セキュリティと承認に関する追加の接続プロパティを表します。|省略可| |IDbTransaction|ローカル トランザクションを表します。|必須| |IDbTransactionExtension|[!INCLUDE[ssRS](../../../includes/ssrs.md)] データ処理拡張機能によって実装できる追加のトランザクション プロパティを表します。|省略可| |IDbCommand|データ ソースと接続するときに使用するクエリまたはコマンドを表します。|必須| |IDbCommandAnalysis|クエリを分析し、クエリで使用されるパラメーター名の一覧を返す追加コマンド情報を表します。|省略可| |IDataParameter|コマンドまたはクエリに渡すパラメーターまたは名前と値のペアを表します。|必須| |IDataParameterCollection|コマンドまたはクエリに関連するすべてのパラメーターのコレクションを表します。|必須| |IDataReader|データ ソースから順方向専用、読み取り専用のデータのストリームを読み取るメソッドを提供します。|必須| |IDataReaderExtension|データ ソースでコマンドを実行することによって取得された、順方向専用の結果セットのストリームを 1 つ以上読み取るメソッドを提供します。 このインターフェイスは、フィールド集計の追加サポートを提供します。|省略可| |IExtension|[!INCLUDE[ssRSnoversion](../../../includes/ssrsnoversion-md.md)] データ処理拡張機能の基本クラスです。 ローカライズされた拡張機能名を追加し、構成ファイルから拡張機能へ構成設定を渡すインプリメンタも有効にします。|必須| データ処理拡張機能インターフェイスは、可能な場合は [!INCLUDE[dnprdnshort](../../../includes/dnprdnshort-md.md)] データ プロバイダーのインターフェイス、メソッド、およびプロパティのサブセットと同じです。 完全な [!INCLUDE[dnprdnshort](../../../includes/dnprdnshort-md.md)] データ プロバイダーの実装の詳細については、[!INCLUDE[dnprdnshort](../../../includes/dnprdnshort-md.md)] Software Development Kit (SDK) ドキュメントの「.NET Framework データ プロバイダーの実装」を参照してください。 ## <a name="see-also"></a>参照 [Reporting Services の拡張機能](../reporting-services-extensions.md) [データ処理拡張機能の実装](implementing-a-data-processing-extension.md) [Reporting Services 拡張機能ライブラリ](../reporting-services-extension-library.md)
50.043956
520
0.773386
yue_Hant
0.673767
8a01edaa9421fb7aac6670338a33a9080899a58b
65,535
md
Markdown
_listings/facebook/userstatuses-get-postman.md
streamdata-gallery-organizations/facebook
37dbfd70198806cf774b1cff3db6a7ad8d41d847
[ "CC-BY-3.0" ]
null
null
null
_listings/facebook/userstatuses-get-postman.md
streamdata-gallery-organizations/facebook
37dbfd70198806cf774b1cff3db6a7ad8d41d847
[ "CC-BY-3.0" ]
null
null
null
_listings/facebook/userstatuses-get-postman.md
streamdata-gallery-organizations/facebook
37dbfd70198806cf774b1cff3db6a7ad8d41d847
[ "CC-BY-3.0" ]
1
2021-09-05T07:24:49.000Z
2021-09-05T07:24:49.000Z
{ "info": { "name": "Facebook Get User Statuses", "_postman_id": "0778d5f4-1dc0-4773-a479-e5c51e106d19", "description": "The user's status updates", "schema": "https://schema.getpostman.com/json/collection/v2.0.0/" }, "item": [ { "name": "Search", "item": [ { "id": "f81eb15d-616d-4151-8d04-64434a5823de", "name": "getSearch", "request": { "url": "http://graph.facebook.com/search?q=%7B%7D&type=%7B%7D", "method": "GET", "body": { "mode": "raw" }, "description": "Search over all public objects in the social graph" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "2dc5c3c3-b4f0-4b47-82b0-93dfcc41bad1" } ] } ] }, { "name": "Album", "item": [ { "id": "eeb61f7f-9001-40fc-bac7-6694108793d1", "name": "getAlbum", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":album" ], "variable": [ { "id": "album", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "A photo album" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "fc8f693b-d6b2-439d-b479-1dac3eda72e0" } ] }, { "id": "8f6ca214-ff03-4328-869c-1ced827e0622", "name": "getAlbumPhotos", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":album/photos" ], "variable": [ { "id": "album", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The photos contained in this album" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "068f0826-6ed6-4073-8c2d-8e740a407561" } ] }, { "id": "c76bb8ae-83c0-42c5-a8de-e8796eb1ae0d", "name": "postAlbumPhotos", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":album/photos" ], "query": [ { "key": "message", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "album", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Adds a photo to the album" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "f54869f6-b35f-4fc4-a922-b39a24cc0e0d" } ] }, { "id": "56c6ee81-bcf6-4f97-a593-04367a4b0221", "name": "getAlbumLikes", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":album/likes" ], "variable": [ { "id": "album", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The likes made on this album" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "becea82f-8d39-46bb-9990-cdb070ea8379" } ] }, { "id": "59798f60-0e54-459d-91cf-a86dd7d42bd0", "name": "postAlbumLikes", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":album/likes" ], "variable": [ { "id": "album", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Likes the album" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "8e1a9b51-2a88-468a-8c67-923298259be1" } ] }, { "id": "2eb50503-a310-4799-a3c1-06c0ef7c660b", "name": "deleteAlbumLikes", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":album/likes" ], "variable": [ { "id": "album", "value": "{}", "type": "string" } ] }, "method": "DELETE", "body": { "mode": "raw" }, "description": "Unlikes the album" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "c891fc9e-066b-4396-ad39-a446fe413a78" } ] }, { "id": "497a2d17-0250-485f-aa6a-f42b4cc715e0", "name": "getAlbumComments", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":album/comments" ], "variable": [ { "id": "album", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The comments made on this album" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "826dfe5e-72af-4d0c-b315-f243e202e885" } ] }, { "id": "31c529d9-5494-484b-a1ed-3aa4c7921bde", "name": "postAlbumComments", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":album/comments" ], "query": [ { "key": "message", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "album", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Posts a comment on the album" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "33e8ae88-4ec9-46db-b2c8-be413a9fb0c6" } ] }, { "id": "0bfcbf58-4de0-4b51-99e7-bb3e35413d59", "name": "getAlbumPicture", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":album/picture" ], "query": [ { "key": "type", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "album", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The album's cover photo; the first picture uploaded to an album becomes the cover photo for the album." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "bf0b52d0-d676-4c9f-ae8d-a56ac1ac0321" } ] } ] }, { "name": "Application", "item": [ { "id": "364ef950-8a2e-47b4-8517-3c7371e13c54", "name": "getApplication", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "An application's profile" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "a2c319af-e523-4564-af92-482bd6ebec5c" } ] }, { "id": "700568db-3923-4d3a-ac33-d3450306dbc5", "name": "getApplicationAccounts", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/accounts" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "Test User accounts associated with the application." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "c75d82cb-98fe-4106-829d-9245ccbfb094" } ] }, { "id": "bd9f9b1d-ec61-4b29-ad41-669e33c90cc7", "name": "postApplicationAccountsTestUsers", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/accounts/test-users" ], "query": [ { "key": "installed", "value": "%7B%7D", "disabled": false }, { "key": "name", "value": "%7B%7D", "disabled": false }, { "key": "permissions", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Creates a test account for the application" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "5d505e8b-3f26-4f5d-ad66-708d6912ab65" } ] }, { "id": "9dfa815a-4372-4b11-b389-9d3e647f129b", "name": "getApplicationAlbums", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/albums" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The photo albums this application has created." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "c8118251-2272-4ef9-ac91-dacba1409c19" } ] }, { "id": "6d97a4a0-13b9-4f0a-936b-16514056e18e", "name": "getApplicationFeed", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/feed" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The application's wall." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "603ad242-8f09-4efa-b411-3c8b1b2dc8f7" } ] }, { "id": "f2bd9ae3-2925-4123-bff4-4caa2ac8ed45", "name": "postApplicationFeed", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/feed" ], "query": [ { "key": "message", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Posts a status message on the application's profile page" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "6447a6d9-665c-4d21-ad79-687b7ca18f01" } ] }, { "id": "40eeb6a9-9f03-4de1-83c9-94e9db4530ca", "name": "getApplicationInsights", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/insights" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "Usage metrics for this application" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "d77a458f-2e5f-4acd-a8f1-7f8904edaff9" } ] }, { "id": "6187af75-b723-4741-bdab-0e137516b0cf", "name": "getApplicationLinks", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/links" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The application's posted links." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "563fa79c-a17c-4062-9bb0-3fd2497a2e74" } ] }, { "id": "9ce12ea8-3ebb-4a48-98a8-342f52a4b6b2", "name": "postApplicationLinks", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/links" ], "query": [ { "key": "link", "value": "%7B%7D", "disabled": false }, { "key": "message", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Posts a link on the application's profile page" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "e733b71c-8946-480f-85a4-7501a43aa6b4" } ] }, { "id": "45ffef8c-299a-4028-8e5c-66bbe3984d03", "name": "getApplicationPicture", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/picture" ], "query": [ { "key": "type", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The application's logo" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "5d8047a4-bcf0-4d7a-b761-d54768668cfc" } ] }, { "id": "9f7b03c8-0a10-4077-b28a-75404faf85b8", "name": "getApplicationAdds", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/posts" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The application's own posts." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "7d9ccab8-80c0-46b5-bc96-f6488f931c60" } ] }, { "id": "f0ba45f3-4661-45f3-8dd8-6bf42f6628e1", "name": "getApplicationReviews", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/reviews" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "Reviews of this application" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "64c3523e-7a26-4144-98f4-461e3afb8746" } ] }, { "id": "7e4068c3-d269-473a-aa64-30181295e931", "name": "getApplicationStaticresources", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/staticresources" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "Usage stats about the canvas application's static resources, such as javascript and CSS, and which ones are being flushed to browsers early." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "787d478b-ae13-4444-8511-39afb44e9b60" } ] }, { "id": "eaf68fe0-396f-42bd-a893-2f4ccb5b4c9f", "name": "getApplicationStatuses", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/statuses" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The application's status updates" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "cb326968-c3b0-44d0-b5a4-c1d7c91d932e" } ] }, { "id": "952a1662-22ee-47f8-9f95-95ae3897e393", "name": "postApplicationStatuses", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/statuses" ], "query": [ { "key": "message", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Posts a status message on the application's profile page" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "cb8784f0-d5dd-4867-b1f6-d06ed0abbddd" } ] }, { "id": "4ebf6b98-0d9b-4f2c-99fb-9eda5c47c066", "name": "getApplicationSubscriptions", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/subscriptions" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "All of the subscriptions this application has for real-time notifications." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "6e28e0d3-951c-4bd7-929d-3d4285aa6eb5" } ] }, { "id": "d0f112b3-9e33-41aa-ad24-b815a596342b", "name": "postApplicationSubscriptions", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/subscriptions" ], "query": [ { "key": "callback_url", "value": "%7B%7D", "disabled": false }, { "key": "fields", "value": "%7B%7D", "disabled": false }, { "key": "object", "value": "%7B%7D", "disabled": false }, { "key": "verify_token", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Adds a real-time notification subscription for this application." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "418d1844-9cfb-4f33-b2d2-7153e7949f03" } ] }, { "id": "d9fef77d-5a49-42c3-af5e-0becb972c019", "name": "deleteApplicationSubscriptions", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/subscriptions" ], "query": [ { "key": "object", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "DELETE", "body": { "mode": "raw" }, "description": "Deletes a real-time notification subscription for this application." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "cce1f65c-ddfb-4f1e-b077-6445fd5ac871" } ] }, { "id": "68dde398-b348-4f6a-b9d6-167f826525da", "name": "getApplicationTagged", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/tagged" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The photos, videos, and posts in which this application has been tagged." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "08415e58-40fc-480a-bce5-36c7b6825643" } ] }, { "id": "0a0e0a30-fe8d-430c-b373-8b2543984bda", "name": "getApplicationTranslations", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/translations" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The translated strings for this application." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "b721bb21-27dc-4a82-afad-049d853dd564" } ] }, { "id": "9da444cb-821b-4a1a-92f1-3c01975e7128", "name": "postApplicationTranslations", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/translations" ], "query": [ { "key": "native_strings", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Uploads translated strings for this application." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "727eb9f2-6608-497a-a680-1e620f63e29f" } ] }, { "id": "016fefc4-82cf-4ed7-ac68-14b807de8ab6", "name": "deleteApplicationTranslations", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/translations" ], "query": [ { "key": "native_hashes", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "DELETE", "body": { "mode": "raw" }, "description": "Deletes a translation string for this application." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "353e2537-97dd-4d19-81e0-8f976a7a86eb" } ] }, { "id": "08abd3a0-7744-44c2-b407-c47df0aa2012", "name": "getApplicationScores", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/scores" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "Scores for the user and their friends." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "8c37db7b-d77f-46c2-977b-dcbcd74d0aad" } ] }, { "id": "02f34bca-be40-4649-8cd0-234c26c0d4a6", "name": "deleteApplicationScores", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/scores" ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "DELETE", "body": { "mode": "raw" }, "description": "Deletes all the scores for the application." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "9d8cf86a-88d4-49c4-a8f0-796bc62a5606" } ] }, { "id": "6f0ff42e-634b-4a8f-835d-85f3342a0a97", "name": "postApplicationAchievements", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/achievements" ], "query": [ { "key": "achievement", "value": "%7B%7D", "disabled": false }, { "key": "display_order", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Registers an achievement for the application" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "7e6f89ae-d0a5-4b30-9a53-d8416d4cfa5a" } ] }, { "id": "b550345e-0d76-49ff-acaf-03e29a4e13e1", "name": "deleteApplicationAchievements", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":application/achievements" ], "query": [ { "key": "achievement", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "application", "value": "{}", "type": "string" } ] }, "method": "DELETE", "body": { "mode": "raw" }, "description": "Unregisters an achievement for the application" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "fd360ff1-b049-4bc0-ab67-94ea559f0cdf" } ] } ] }, { "name": "Checkin", "item": [ { "id": "024541d2-9d6f-4e09-9097-d1131d2cb2d3", "name": "getCheckin", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":checkin" ], "variable": [ { "id": "checkin", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "Represents a single visit by a user to a location" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "bf5c3f89-6674-4f0b-b990-b6db3ee3fccb" } ] }, { "id": "b9863f77-ecf8-47c1-baff-4062704b13e3", "name": "getCheckinComments", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":checkin/comments" ], "variable": [ { "id": "checkin", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "All of the comments on this checkin." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "aec76243-feb3-46c5-8371-f9dc785ce81b" } ] }, { "id": "355faa26-d471-45d2-a880-99b981eb1b77", "name": "postCheckinComments", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":checkin/comments" ], "query": [ { "key": "message", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "checkin", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Posts a comment to this checkin." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "4a9ca865-f5b7-4fb4-84e8-3c77dacfa910" } ] }, { "id": "b1238a1b-9c19-471f-8f46-07b948135356", "name": "getCheckinLikes", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":checkin/likes" ], "variable": [ { "id": "checkin", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "Users who like this checkin." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "424a82c7-266b-487c-8fb9-7c16ab5296db" } ] }, { "id": "0d22dfcb-230c-4589-9bd3-9cded45c058c", "name": "postCheckinLikes", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":checkin/likes" ], "variable": [ { "id": "checkin", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Likes this checkin." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "d7fa1c07-827e-4b67-80a5-797f75808e45" } ] }, { "id": "3dabe2b5-af55-48b5-b53c-9abf92274c97", "name": "deleteCheckinLikes", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":checkin/likes" ], "variable": [ { "id": "checkin", "value": "{}", "type": "string" } ] }, "method": "DELETE", "body": { "mode": "raw" }, "description": "Unlikes this checkin." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "f62e3281-a9b6-4e35-8288-0b526a1e4bc2" } ] } ] }, { "name": "Comment", "item": [ { "id": "b2ec5ef3-8050-43a8-b4da-8fa44b903aac", "name": "getComment", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":comment" ], "variable": [ { "id": "comment", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "Returns a comment" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "f4bf6b6d-079f-435a-95cf-935ecf621e45" } ] }, { "id": "514ce0bc-7be4-447a-aed0-e5a43f47ba63", "name": "deleteComment", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":comment" ], "variable": [ { "id": "comment", "value": "{}", "type": "string" } ] }, "method": "DELETE", "body": { "mode": "raw" }, "description": "Deletes a comment" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "71af6a23-a64d-41e5-8519-17033934142b" } ] }, { "id": "d8a29a99-6ce4-44b4-9c7b-5059f54f8199", "name": "getCommentLikes", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":comment/likes" ], "variable": [ { "id": "comment", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "All the likes on this comment" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "5e61fd3d-d4dd-4af2-86aa-de9da46ec305" } ] }, { "id": "8e4dc06f-1de7-4373-9edd-3230f94d1e6c", "name": "postCommentLikes", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":comment/likes" ], "variable": [ { "id": "comment", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Likes the comment" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "0ae58579-8f88-4f20-bbba-73db54807a5c" } ] }, { "id": "594a6b8a-2bf8-4d79-b27e-fc48c36a987e", "name": "deleteCommentLikes", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":comment/likes" ], "variable": [ { "id": "comment", "value": "{}", "type": "string" } ] }, "method": "DELETE", "body": { "mode": "raw" }, "description": "Unlikes the comment" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "8372cf40-1b29-417c-bb9c-23cd04bd27c8" } ] } ] }, { "name": "Event", "item": [ { "id": "f764cf5d-cd4d-4867-bb89-c042c8f89e8d", "name": "getEvent", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event" ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "Specifies information about an event, including the location, event name, and which invitees plan to attend." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "a86e5f07-dc7b-4d8f-b941-d3b744432ee9" } ] }, { "id": "740bd472-58bd-437a-a4ff-ed2265ae01e9", "name": "getEventFeed", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event/feed" ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "This event's wall" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "cf7576cc-3cc2-4d6c-a535-fa1f9b9b0277" } ] }, { "id": "d3874eb1-393b-4b2b-913e-48adf3601d92", "name": "postEventFeed", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event/feed" ], "query": [ { "key": "message", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Posts a status message on this event's wall" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "9bbfe8e2-57ec-4b44-aeb8-a92da4024f4e" } ] }, { "id": "eafc848a-3a72-4b53-bf6a-cca7cadaa15b", "name": "getEventNoreply", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event/noreply" ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "All of the users who have been not yet responded to their invitation to this event" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "c48c4fc4-5fa5-46e3-82c8-ec365cd60dad" } ] }, { "id": "92aa7d0e-e443-4388-a77f-1edf3be8a35e", "name": "getEventMaybe", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event/maybe" ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "All of the users who have been responded \"Maybe\" to their invitation to this event" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "e4a39c94-7f66-46f7-857c-215ad5a606e1" } ] }, { "id": "3c1cc0b6-44c8-4bbb-8179-355c6797792c", "name": "postEventMaybe", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event/maybe" ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "RSVPs the user as a 'maybe' for the event" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "ddf57913-4601-4851-a037-46b158540c94" } ] }, { "id": "cd1d2f45-845f-4e6e-9555-cb45991f79c4", "name": "getEventInvited", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event/invited" ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "All of the users who have been invited to this event" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "5531d484-a355-42ed-bc0b-527bf19b8707" } ] }, { "id": "24bb54e5-c2d0-4a5c-903b-c6605c585e8f", "name": "getEventAttending", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event/attending" ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "All of the users who are attending this event" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "e43ab009-5c65-457c-bd6b-c39f7decd3e0" } ] }, { "id": "dcfbb699-abe9-4f11-b1ac-3fa2d44cd211", "name": "postEventAttending", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event/attending" ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "RSVPs the user as 'attending' for the event" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "d3e80e04-bc4e-4152-bebc-71fce30dc195" } ] }, { "id": "67148a46-c727-4539-b524-7ef7eac3ef4e", "name": "getEventDeclined", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event/declined" ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "All of the users who declined their invitation to this event" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "a29fa861-dea3-4208-a4d1-030576d4ff40" } ] }, { "id": "9d00fb67-ef2f-4855-a22a-fd3ee399047f", "name": "postEventDeclined", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event/declined" ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "RSVPs the user as 'declined' for the event" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "fc875fc3-50be-45fc-a044-ec612d4686b0" } ] }, { "id": "86af37a8-b52a-428c-a3d9-fb66df169b3a", "name": "getEventPicture", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":event/picture" ], "query": [ { "key": "type", "value": "%7B%7D", "disabled": false } ], "variable": [ { "id": "event", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "The event's profile picture" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "2dd6aacd-2ed4-43c5-b26b-64c7f606e933" } ] } ] }, { "name": "Friendlist", "item": [ { "id": "0f527e1b-89ea-49f5-b06f-4cab93b2bd98", "name": "getFriendlist", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":friendlist" ], "variable": [ { "id": "friendlist", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "A Facebook friend list. This object represents the list itself and not the members of the list." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "42fe4aeb-4cd8-4f98-87e9-38483efd4827" } ] }, { "id": "fecf54ee-834a-4440-adc8-cb3351b4c1fc", "name": "deleteFriendlist", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":friendlist" ], "variable": [ { "id": "friendlist", "value": "{}", "type": "string" } ] }, "method": "DELETE", "body": { "mode": "raw" }, "description": "Deletes the FriendList." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "1f2416fd-6e9f-4300-805e-125b5d3089b0" } ] }, { "id": "f6e08c8d-d274-4dfb-8f8c-db50f5c17f6e", "name": "getFriendlistMembers", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":friendlist/members" ], "variable": [ { "id": "friendlist", "value": "{}", "type": "string" } ] }, "method": "GET", "body": { "mode": "raw" }, "description": "All of the users who are members of this list." }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "9383f4f3-3969-441f-8643-4defa9451457" } ] }, { "id": "e9fc3576-2704-45f8-868b-b4ccbb28e652", "name": "postFriendlistMembersUser", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":friendlist/members/:user" ], "variable": [ { "id": "friendlist", "value": "{}", "type": "string" }, { "id": "user", "value": "{}", "type": "string" } ] }, "method": "POST", "body": { "mode": "raw" }, "description": "Adds a user to the friend list" }, "response": [ { "status": "OK", "code": 200, "name": "Response_200", "id": "20938ef8-1af6-48b0-a3e1-3abb5059d76c" } ] }, { "id": "fbe8eb41-626c-477b-8482-fef9dc5eccaa", "name": "deleteFriendlistMembersUser", "request": { "url": { "protocol": "http", "host": "graph.facebook.com", "path": [ ":friendlist/members/:user" ], "variable": [ { "id": "friendlist", "value": "{}", "type": "string" }, { "id": "user", "value": "{}", "type": "string" } ] }, "method": "DELETE", "body": { "mode": "raw" }, "description": "Removes a user from the friend list" }, "response": [ { "status": "OK", "c
28.505872
170
0.300893
yue_Hant
0.165861
8a02256a18bf46bf143bb3dcd4d40bc8fd52be0e
583
md
Markdown
content/blog/personal_finance/__index.md
Nosferican/jbsc
34d12b4e239ca77e4145ec21c2c8c781e103b7ae
[ "0BSD" ]
1
2021-01-08T16:24:45.000Z
2021-01-08T16:24:45.000Z
content/blog/personal_finance/__index.md
Nosferican/jbsc
34d12b4e239ca77e4145ec21c2c8c781e103b7ae
[ "0BSD" ]
null
null
null
content/blog/personal_finance/__index.md
Nosferican/jbsc
34d12b4e239ca77e4145ec21c2c8c781e103b7ae
[ "0BSD" ]
2
2018-05-23T17:39:07.000Z
2019-11-27T15:22:00.000Z
--- # Course title, summary, and position. title: Personal Finance linktitle: personal_finance summary: # weight: 1 # Page metadata. title: Personal Finance date: "2020-12-07T00:00:00Z" lastmod: "2020-12-07T00:00:00Z" draft: false # Is this a draft? true/false toc: true # Show table of contents? true/false type: docs # Do not modify. # Add menu entry to sidebar. # - name: Declare this menu item as a parent with ID `name`. # - weight: Position of link in menu. menu: - name: personal_finance --- Thoughts and recommendations on personal finance and evaluating job offers.
24.291667
75
0.730703
eng_Latn
0.937391
8a029e2bf48fe48ea16da5f8b1ddc2755d110612
1,401
md
Markdown
docs/cache.md
rwcoding/goback
047f45d3982f35e9596c04136d6c37802fc5a21f
[ "Apache-2.0" ]
null
null
null
docs/cache.md
rwcoding/goback
047f45d3982f35e9596c04136d6c37802fc5a21f
[ "Apache-2.0" ]
null
null
null
docs/cache.md
rwcoding/goback
047f45d3982f35e9596c04136d6c37802fc5a21f
[ "Apache-2.0" ]
null
null
null
## 缓存-列表 ``` ---------------- 请求 ---------------- { "api": "goback.cache.list", "data": { "page": 1, // [int] 分页 "page_size": 1, // [int] 每页显示几条数据 "sign": "", // [string] 查询缓存KEY } } ---------------- 响应 ---------------- { "code": 10000, "msg": "", "data": { "datas": [ // [array[object]] 列表数据 { "id": 1, // [int] 数据ID "name": "", // [string] 名称 "sign": "", // [string] 标识 "data": "", // [string] 数据 "updated_at": 1, // [int] 更新时间 }, ........ ], "count": 1, // [int] 数据总数 "page": 1, // [int] 当前页 "page_size": 1, // [int] 每页显示条数 } } ``` ## 缓存-查询 ``` ---------------- 请求 ---------------- { "api": "goback.cache.info", "data": { "id": 1, // [int] 数据ID } } ---------------- 响应 ---------------- { "code": 10000, "msg": "", "data": { "id": 1, // [int] 数据ID "name": "", // [string] 名称 "sign": "", // [string] 标识 "data": "", // [string] 数据 "updated_at": 1, // [int] 更新时间 } } ``` ## 缓存-生成 ``` ---------------- 请求 ---------------- { "api": "goback.cache.generate", } ---------------- 响应 ---------------- { "code": 10000, "msg": "", } ```
19.732394
48
0.273376
yue_Hant
0.124831
8a02c3388932d7f98187da6e39746af1f4cfef02
93
md
Markdown
Parallel/README.md
KanashinDmitry/WordCounter
61db681e6ae60f9f5189700000b25a99a9cffe42
[ "Apache-2.0" ]
null
null
null
Parallel/README.md
KanashinDmitry/WordCounter
61db681e6ae60f9f5189700000b25a99a9cffe42
[ "Apache-2.0" ]
null
null
null
Parallel/README.md
KanashinDmitry/WordCounter
61db681e6ae60f9f5189700000b25a99a9cffe42
[ "Apache-2.0" ]
null
null
null
## Time measurements Sequential realisation time: 137 ms Parallel realisation time: 1599 ms
18.6
35
0.806452
eng_Latn
0.574376
8a036de8b5a6eb7ab7c01f96ce9af32d8d22ce4d
1,203
md
Markdown
refguide7/association-source.md
j3lte/docs
71c588fa362c1d91f9f89c9f221ad5c960a631b8
[ "CC-BY-4.0" ]
1
2016-10-07T06:48:33.000Z
2016-10-07T06:48:33.000Z
refguide7/association-source.md
ishan1729/docs
afaa9b86100beb83e8db9e1675bc9f18603dc6d2
[ "CC-BY-4.0" ]
null
null
null
refguide7/association-source.md
ishan1729/docs
afaa9b86100beb83e8db9e1675bc9f18603dc6d2
[ "CC-BY-4.0" ]
null
null
null
--- title: "Association Source" space: "Mendix 7 Reference Guide" parent: "data-sources" --- The association source is a data source available to nested [data grids](data-grid), [template grids](template-grid), and [list views](list-view). This will fill the widget with the objects linked to an object already in the context by manner of an association. For this to function the data widget needs to be nested within another data widget to provide that context. Data widgets that can function as a container for other data widgets are the [template grid](template-grid), [list view](list-view), and [data view](data-view). <div class="alert alert-warning">{% markdown %} Sorting columns and searching is not possible in data widgets with an association data source. This is because these features require a database call to function, which an association data source does not necessarily initiate. {% endmarkdown %}</div> ## Properties ### Entity (Path) The entity (path) property specifies the association by which the widget is populated. The only objects that will appear in the widget are those that are linked to the object in the containing widget by manner of the association selected.
52.304348
369
0.773899
eng_Latn
0.999288
8a03b995fe55fef3ee60d9a3e4a776fba14a75ce
631
md
Markdown
docs/providers/aws/AppsyncApiKey.md
claytonbrown/tf-cfn-provider
b338642692e91a959bba201c2a84be6bfc7c4bed
[ "MIT" ]
25
2019-01-19T10:39:46.000Z
2021-05-24T23:38:13.000Z
docs/providers/aws/AppsyncApiKey.md
claytonbrown/tf-cfn-provider
b338642692e91a959bba201c2a84be6bfc7c4bed
[ "MIT" ]
null
null
null
docs/providers/aws/AppsyncApiKey.md
claytonbrown/tf-cfn-provider
b338642692e91a959bba201c2a84be6bfc7c4bed
[ "MIT" ]
3
2019-02-27T04:34:36.000Z
2019-06-20T05:25:56.000Z
# Terraform::AWS::AppsyncApiKey Provides an AppSync API Key. ## Properties `ApiId` - (Required) The ID of the associated AppSync API. `Description` - (Optional) The API key description. Defaults to "Managed by Terraform". `Expires` - (Optional) RFC3339 string representation of the expiry date. Rounded down to nearest hour. By default, it is 7 days from the date of creation. ## Return Values ### Fn::GetAtt `Id` - API Key ID (Formatted as ApiId:Key). `Key` - The API key. ## See Also * [aws_appsync_api_key](https://www.terraform.io/docs/providers/aws/r/appsync_api_key.html) in the _Terraform Provider Documentation_
26.291667
154
0.740095
eng_Latn
0.719455
8a041521d6bd88837332ec4f26a123220e08854f
2,061
md
Markdown
docs/debugger/debug-interface-access/idiasymbol-get-frontendmajor.md
Miguel-byte/visualstudio-docs.es-es
5f77731590b1efe39f2dd38ad51400c1e44a9d58
[ "CC-BY-4.0", "MIT" ]
6
2020-05-20T07:48:51.000Z
2022-03-09T07:27:32.000Z
docs/debugger/debug-interface-access/idiasymbol-get-frontendmajor.md
Miguel-byte/visualstudio-docs.es-es
5f77731590b1efe39f2dd38ad51400c1e44a9d58
[ "CC-BY-4.0", "MIT" ]
30
2018-10-02T15:11:15.000Z
2021-12-17T11:02:02.000Z
docs/debugger/debug-interface-access/idiasymbol-get-frontendmajor.md
Miguel-byte/visualstudio-docs.es-es
5f77731590b1efe39f2dd38ad51400c1e44a9d58
[ "CC-BY-4.0", "MIT" ]
25
2018-01-24T17:02:46.000Z
2022-03-04T14:06:19.000Z
--- title: IDiaSymbol::get_frontEndMajor | Microsoft Docs ms.date: 11/04/2016 ms.topic: conceptual dev_langs: - C++ helpviewer_keywords: - IDiaSymbol::get_frontEndMajor method ms.assetid: f8a067c5-3306-4fc5-bc20-8910a47ed504 author: mikejo5000 ms.author: mikejo manager: jillfra ms.workload: - multiple ms.openlocfilehash: cd15bb798d35ebac1a8f3af7b766ffd9aeea7d8e ms.sourcegitcommit: 5f6ad1cefbcd3d531ce587ad30e684684f4c4d44 ms.translationtype: MT ms.contentlocale: es-ES ms.lasthandoff: 10/22/2019 ms.locfileid: "72740634" --- # <a name="idiasymbolget_frontendmajor"></a>IDiaSymbol::get_frontEndMajor Recupera el número de la versión principal del front-end. ## <a name="syntax"></a>Sintaxis ```C++ HRESULT get_frontEndMajor (  DWORD* pRetVal ); ``` #### <a name="parameters"></a>Parámetros `pRetVal` enuncia Devuelve el número de la versión principal del servidor front-end. Vea la sección Comentarios. ## <a name="return-value"></a>Valor devuelto Si se realiza correctamente, devuelve `S_OK`; de lo contrario, devuelve `S_FALSE` o un código de error. > [!NOTE] > Un valor devuelto de `S_FALSE` significa que la propiedad no está disponible para el símbolo. ## <a name="remarks"></a>Comentarios Un compilador normalmente se compone de dos elementos principales: el front-end (el analizador), que controla el análisis del código fuente en un formato intermedio y un back-end (generador de código), que convierte el formato intermedio en ensamblado. No es raro que el front-end tenga una versión diferente que el back-end. Un número de versión de front-end o back-end consta de tres partes: \<major >. \<minor >. \<build >, donde \<major > es el número de versión principal, \<minor > es el número de versión secundaria y \<build > es el número de compilación. Por ejemplo, 13.10.3077. ## <a name="requirements"></a>Requisitos |Requisito|Descripción| |-----------------|-----------------| |Encabezado:|dia2.h| |Versión:|SDK de DIA v 7.0| ## <a name="see-also"></a>Vea también - [IDiaSymbol](../../debugger/debug-interface-access/idiasymbol.md)
36.157895
326
0.743814
spa_Latn
0.812282
8a041c7f6ceb859cac11225a64c92a1a5e4dbf3b
164
md
Markdown
README.md
dilungasr/beautifulHTMLCSSform
a4557c05edf0774b7e54eee35d4ca9755d79f5f2
[ "MIT" ]
1
2021-04-19T19:31:02.000Z
2021-04-19T19:31:02.000Z
README.md
dilungasr/beautifulHTMLCSSform
a4557c05edf0774b7e54eee35d4ca9755d79f5f2
[ "MIT" ]
null
null
null
README.md
dilungasr/beautifulHTMLCSSform
a4557c05edf0774b7e54eee35d4ca9755d79f5f2
[ "MIT" ]
null
null
null
# beautifulHTMLCSSform ### Free source code by <a href="https://www.youtube.com/channel/UCT72pY7IWmD8J6kv_zHjJ6A" target="_blank">Axis Medium</a> YouTube channel
32.8
138
0.77439
yue_Hant
0.391245
8a0427158ff873db612e98996ab17856c05d03c8
788
md
Markdown
content/learning/learning-algorithms/167.md
fishszh/fishszh.io
032065205ad43c7096f0fb386c0e2e357ebc62a3
[ "MIT" ]
null
null
null
content/learning/learning-algorithms/167.md
fishszh/fishszh.io
032065205ad43c7096f0fb386c0e2e357ebc62a3
[ "MIT" ]
null
null
null
content/learning/learning-algorithms/167.md
fishszh/fishszh.io
032065205ad43c7096f0fb386c0e2e357ebc62a3
[ "MIT" ]
null
null
null
--- title: 两数之和 II 输入有序数组 type: docs # Do not modify. --- ## 题目描述 给定一个已按照升序排列的有序数组,找到两个数使得它们相加之和等于目标数。 函数应该返回这两个下标值 `index1` 和 `index2`,其中 `index1` 必须小于 `index2`。 ### 说明 返回的下标值(`index1` 和 `index2`)不是从零开始的。 你可以假设每个输入只对应唯一的答案,而且你不可以重复使用相同的元素。 ### 题目解析 这道题同样可以利用hash表的方法来解,但是这样就用不到有序这个特点了. ## 方法一: 指针对撞 这种方法还是比较明朗的,直接上代码. ```python class Solution: def twoSum(self, numbers: List[int], target: int) -> List[int]: left = 0 right = len(numbers) - 1 while left < right: s = numbers[left] + numbers[right] if s == target: return [left+1, right+1] elif s < target: left += 1 else: right -= 1 ``` ### 复杂度分析: - 时间复杂度:$O(n)$ - 空间复杂度:$O(n)$ ## 方法二: 二分查找 以后再写了
16.416667
67
0.560914
yue_Hant
0.468821
8a0441fdb755603684d282c5f22834797c72436e
510
md
Markdown
hardware/README.md
mjaskula/EuroPi
35b5ef6560080672adf52d38b3d021ed32537c04
[ "CC0-1.0" ]
104
2021-11-07T10:00:25.000Z
2022-03-31T06:40:46.000Z
hardware/README.md
roryjamesallen/EuroPi-V2
e4b5fb90ccfd387b7eb9b5e0335e34c7ebfb6194
[ "CC0-1.0" ]
62
2021-11-22T12:56:19.000Z
2022-03-31T14:48:43.000Z
hardware/README.md
roryjamesallen/EuroPi-V2
e4b5fb90ccfd387b7eb9b5e0335e34c7ebfb6194
[ "CC0-1.0" ]
27
2021-11-22T23:46:49.000Z
2022-03-20T04:23:21.000Z
# Hardware Specifications ## Outputs - 1k Output Impedance - RC filter smoothed PWM - 33Hz Maximum usable frequency (without changing RC values) - 0.000176V Maximum ripple peak-to-peak - 0.0108s Settle time from 0% to 90% duty cycle - 0-10V ## Analogue Input - 100k Input Impedance - 0-12V Readable Range - Protected for ±36V (TL074 limits, MCP6002 will always clip to ±3.3V) ## Digital Input - 100k Input Impedance - 0.8V threshold to read as high ## OLED - SSD1306 0.91" - 128 x 32 pixels - I2C Protocol
21.25
70
0.733333
eng_Latn
0.789554
8a04613284f5f594a53d5748a80d4adae0bc6d5a
46,642
md
Markdown
src/mailpile__img_016__below.md
greenpark-code/Mailpile_tutorial
2605569373ae80fb5a19f81ecc60e84be4a1cc63
[ "MIT" ]
1
2021-01-12T09:58:05.000Z
2021-01-12T09:58:05.000Z
src/mailpile__img_016__below.md
greenpark-code/Mailpile_tutorial
2605569373ae80fb5a19f81ecc60e84be4a1cc63
[ "MIT" ]
null
null
null
src/mailpile__img_016__below.md
greenpark-code/Mailpile_tutorial
2605569373ae80fb5a19f81ecc60e84be4a1cc63
[ "MIT" ]
null
null
null
<br> <a name="essentialPoints"></a>If you **lack** the **time or will** to read the following "not essential" section, then read this frame content (but I'd recommend that someday you read the part you are skipping now): <div class="fluo_green_frame"> If anything more complicated than "normal"[^normalEmailsShouldBeEncrypted] unencrypted emails means no encryption at all for you, then let's choose the easiest way for now, *any* level of security on your emails is better than none. 1. Check out [this recommendation](#separateFirefoxInstance). 2. **Remember <a name="forwardSecrecy"></a>that encrypting doesn't mean that you can be absolutely sure that your messages are and will always be secure**. *GnuPG* doesn't support **"forward secrecy"**: <span class="fluo_green_bgnd">if a key is compromised then the secrecy of all past messages encrypted with it is compromised.</span> **You can periodically revoke secret subkeys (or even preliminary set an expiration date on them)** and create new ones, but it's not the same as having different keys for each communication session. 3. Flip a coin to choose your key type. [I may still choose RSA4096 for now](#ImayChoseRSA4096despite), despite [**RSA Security having been the target of strong accusations of adding backdoors**](#Kleptography_NSA). I may [add further encryption levels](#HigherSecurity) with other encryption types for important messages. 4. Let *Mailpile* create and manage your keys for now. 5. Click the button and move on to the [next step](#accessingEmailAccount). </div> [^normalEmailsShouldBeEncrypted] Our "normal" everyday emails should all be encrypted. For years, I've been seeing blogs on the web recommending to encrypt every email, even "let's go for a picnic". It took me *some* time to understand *why*, being "I've nothing to hide" the first thought we all have. One of various good reasons is to help journalists who *need* to protect their sources. Epistolary secrecy, right to privacy, is a fundamental ingredient of any democracy. ***Aleksandr Solzhenitsyn***, despite being a brave officer, went through various years in a *gulag* because he *privately* wrote to a friend criticizing how Stalin was leading war. Today, NWO-controlled governments are apparently trying to push in the same direction, as per Trilateral Commission statements about correcting an "excess of democracy"... <br> <big><span class="notEssent_security_bgnd_fg">This is not essential to use *Mailpile*</span></big> <a name="AboutKeysAndSecurity"></a><div class="notEssent_security_frame"> # About keys and security – not essential to use *Mailpile* ***Mailpile***, just as *Thunderbird*+*Enigmail*, can work in combination with [***GNU Privacy Guard***](https://www.gnupg.org/) to use all keys in its "keyring" (or "keychain"). We can let *Mailpile* handle *gpg* to create keys for us and totally manage them, or we can use *gpg* from a terminal window to create keys, import keys, export keys, and also encrypt symmetrically or asymmetrically, sign files, sign other persons' keys... (I didn't plan to put any *GnuPG* commands in this document, because there are many good tutorials out there, but after mentioning *Mailpile* in an online<=>[air-gapped](#airGapped) workflow, I ended up doing so in an [appendix](#gpgExamples).) ***Mailpile* will be able to use any keys that we might import directly with *gpg* into its keyring.** <a name="UseSharedGnuPGkeychain"></a> <div class="fluo_orange_frame"> Please **NOTE** that one of the Security and Privacy settings I [modified above](#SecurityAndPrivacySettingsModifiedFromDefaults) was <u>***Use shared GnuPG keychain for PGP encryption keys***</u> and I activated it. <u>**I haven't tested at all what happens with "Off", what follows is pure speculation and that setting might even have another meaning.**</u> <span class="fluo_orange_bgnd">**[needs clarification]**</span> <span class="fluo_orange_bgnd">If you do not want to have anything to do directly with *GnuPG*, you might want to leave that "Off", I don't know if doing so would imply a higher security level. **[needs clarification]**</span> I prefer to be able to fully use *Mailpile* in combination with *gpg* on the command line. Besides, in the [GitHub page for *Mailpile* issues](https://github.com/mailpile/Mailpile/issues), I've seen <span class="fluo_orange_bgnd">reports about difficulties to import keys via *Mailpile*'s GUI, while it's trivial to import keys with *GnuPG*'s command line:</span> `gpg --import filename` (Those issues may have been solved by now. <span class="fluo_orange_bgnd">**[needs clarification]**</span>) As for the security level: I prefer to create my own keys apart with GnuPG, I set a stronger passphrase on my keys than *Mailpile*'s current passphrases, alphanumeric instead of numeric-only, and I keep the primary secret key stored apart, I only export secret subkeys and import them into the keychain I actually use. This way, **the primary secret key remains valid as a long-term identity key**, I can always revoke the secret subkeys, periodically or if I think that they might be compromised, and create new ones. Unless you *really* prepare the whole *Mailpile*+*GnuPG* setup on some [air-gapped](#airGapped) machine, this approach might actually turn out to be weaker than leaving it all to *Mailpile*, because at some point you would have to **type** the keys passphrase, at least twice, once when importing into the keyring, and once for *Mailpile*, and you don't know if those keystrokes are being recorded... This is about **bets**, make yours. If there isn't an option to prepare the whole *Mailpile*+*GnuPG* setup on some [air-gapped](#airGapped) machine (at least for creating keys and moving secret subkeys to a [hardware device](#keysInHardwareDevice)), then leaving it all to *Mailpile* might be the best bet after all. On the other hand, you'll be typing *Mailpile*'s login password anyway, so the encryption on your local storage might also get compromised... well if somebody's **"watching over your shoulder"**, then simply nothing can be kept secure on that machine, unencrypted or decrypted messages will be exposed as well. Better chances of security would be gained by also encrypting/decrypting exclusively on an [air-gapped](#airGapped) machine, better if with a supposedly audited Operative System like *Tails*, especially at the moment of keys generation, to avoid [Kleptography](#Kleptography_NSA). As for purely brutal force attacks on <span class="fluo_orange_bgnd">the local storage</span> encryption, they wouldn't probably be successful for a few more years. <span class="fluo_orange_bgnd">I don't know at the moment what type of encryption it is. **[needs clarification]**</span> The current PGP key of *Mailpile*'s developers team is EdDSA, a type of ECC, so maybe the local encryption scheme is also based on ECC. I've quoted something [below](#EdDSA_ECC) about that. Anyways: - **If you do leave it all to *Mailpile*, you probably have one more good reason to always keep an updated backup copy of [the whole *Mailpile* folder](#MailpileFolderDefaultLocation) (not only *Mailpile*'s settings backed up via [the *Backup* button](#settingsBackup)), and *also* a backup copy of the *Mailpile* package that you have installed and has been running fine.** <span class="fluo_green_bgnd">Keeping a backup is a good practice anyway, ***Borg*** is a *very* good de-duplicating incremental backup utility, I hear from a very knowledgeable friend that ***Duplicata*** is another good one... or you might just copy the whole folder (in Linux: ~/.local/share/Mailpile).</span> - **If a frequent backup of the whole *Mailpile* folder is *really* not an option for you for *who knows* what reason:** Unless your philosophy is to "read and destroy" received encrypted emails, <span class="fluo_orange_bgnd">you should see if you can backup your secret keys anyway – and not only their passphrase[^MailpileShowsPassphrases] – so you'd still be able to decrypt new incoming messages in case you run into problems with *Mailpile*. I won't investigate for now how to do that in case [that option](#UseSharedGnuPGkeychain) is left "off". **[needs clarification]**</span> [^MailpileShowsPassphrases] *Mailpile* will show you the passphrases for the keys it is managing for you, in exchange for your *Mailpile* login password: - move away or phisically cover all webcams and smartphones cameras around - if you don't see an icon with colored envelopes in the upper left corner of the GUI, click the ***Inbox*** tag in the sidebar - click the envelopes icon in the upper left corner, you are now accessing a page with your accounts settings - click **the small lock icon of the account of which you want to see the keys passphrase** - type in your *Mailpile* login password and you'll see the passphrase that *Mailpile* uses to unlock that account secret keys. If *Mailpile* is using the *GnuPG* keyring, you'll be able to export using *gpg* on the Linux command line (or the Windows cmd window, I guess). The [section](#gpgExamples) about *GnuPG* [mentions exporting secrets from the keyring](#ExportingSecretsFromKeyring), but there are also many good tutorials on the web. I describe [below](#keysInHardwareDevice) how I handled secret keys for a *Yubikey 5 NFC*. </div> <a name="TypesOfKeys"></a> ## Types of keys Keys can be of different **types**. Compatibility with Autocrypt mentioned below is "as far as I've read", it could be outdated info (but <span class="fluo_green_bgnd">a few tests</span> are enough to understand that it is a secondary importance matter): - **EdDSA256**, compatible with Autocrypt 1.1, which means that even the message subject will be encrypted, thus limiting the amount of data left visible by SMTP, the Send Mail Transfer Protocol[^draftForEvolutionOfSMTP] - **RSA3072**, compatible with Autocrypt 1.0 - **RSA4096**, not compatible with Autocrypt... but when testing I see that <span class="fluo_green_bgnd">both *Mailpile* and *Thunderbird*+*Enigmail* circumvent the problem, only showing **"(Subject unavailable)"** or **"..."** as the email subject once it has been encrypted, revealing the original subject at the moment of decryption</span>. A correspondent using a client not implementing the same workaround would be able to read the subject anyway at the beginning of the message body, once decrypted. In any case: we can always arrange to write generic/allusive subjects not needing encryption. [^draftForEvolutionOfSMTP] *Mailpile* developers already have a draft for an evolution of SMTP, just *great*. <a name="ImayChoseRSA4096despite"></a>**Please share** if you have more information to evaluate for this choice. <span class="fluo_green_bgnd">**I may choose RSA4096** as the basic key type associated with an account</span>, considering – and <span class="fluo_green_bgnd">*despite*</span> – what follows, and considering the recommendations I've found in various **tutorials** about creating *GnuPG* keys, [one](#perfectKeypair) is mentioned in the [appendix with examples of usage of *GnuPG* in a *Linux* terminal command line](#gpgExamples). After reading below about [Kleptography](#Kleptography_NSA), you'll wonder, as I do: <center>Were the tutorials I've seen made by backdoors creators pushing their trojan horses? I don't think so, but the truth is: <big>**I don't know**</big>[^HowWouldYouKnow]</center> [^HowWouldYouKnow] Was this one? I know it wasn't, but how would you know? LOL this reminds me of certain spy movies where nobody can trust anybody. Let's see what Glenn Greenwald uses[^whereDidIFindGreenwaldKey], I guess he learned from Edward Snowden:[^heLearnedFromSnowden] [^whereDidIFindGreenwaldKey] I went to [one of many](https://keyserver.escomposlinux.org/) key servers out there and as search string I typed Glenn Greenwald. Each one of this servers may not always be up and working correctly. If you get errors like "Bad Gateway" when clicking on a key ID to actually get the key, you may want to wait a few seconds and retry. If you have the hexadecimal key ID, it is also possible to import directly into gpg, for instance in this case: gpg --keyserver keyserver.escomposlinux.org --receive-keys 0xA4A928C769CD6E44 (Of course you would replace the server URL and key ID.) [^heLearnedFromSnowden] I've read that at first Greenwald was deeming as too complex the security procedures that Snowden was asking from him. He was later convinced by Laura Poitras, the author of the documentary ***Citizenfour*** (2014). ``` pub rsa4096/0xA4A928C769CD6E44 2015-01-06 [SCA] [expires: 2021-01-19] 734A3680A438DD45AF6F5B99A4A928C769CD6E44 uid [ unknown] Glenn Greenwald <Glenn.Greenwald@theintercept.com> uid [ unknown] Glenn Greenwald <Glenn.Greenwald@riseup.net> uid [ unknown] Glenn Greenwald <GlennGreenwald@firstlook.org> uid [ unknown] Glenn Greenwald <Glenn.Greenwald@firstlook.org> sub rsa4096/0x30B33AC842F37B85 2015-01-06 [E] [expires: 2021-03-05] ``` That's one point for RSA4096. And another one: *Mailpile* developers themselves qualify as "strong" the RSA4096 key type in that pull-down menu, meaning that they don't have elements against RSA4096 either (and they seem to know what they are doing, *Mailpile* can actually use or not use the pre-installed gpg-agent and gpg binary). Now one point less for EdDSA: <a name="EdDSA_ECC"></a> This page tells us that **EdDSA is based on elliptic-curve cryptography**: [**EdDSA** – https://en.wikipedia.org/wiki/EdDSA](https://en.wikipedia.org/wiki/EdDSA) Such encryption, with shorter keys, might be as hard to break as RSA encryption with larger keys... **except for quantum computing attacks**. Let's quote from this other page (please visit the page to also read those footnotes): [**Elliptic-curve cryptography** – https://en.wikipedia.org/wiki/Elliptic_curve_cryptography](https://en.wikipedia.org/wiki/Elliptic_curve_cryptography) > **Quantum computing attacks** > > Shor's algorithm can be used to break elliptic curve cryptography by computing discrete logarithms on a hypothetical quantum computer. The latest quantum resource estimates for breaking a curve with a 256-bit modulus (128-bit security level) are 2330 qubits and 126 billion Toffoli gates.<sup>~~~[43]~~~</sup> In comparison, using Shor's algorithm to break the RSA algorithm requires 4098 qubits and 5.2 trillion Toffoli gates for a 2048-bit RSA key, <span class="fluo_green_bgnd">suggesting that ECC is an easier target for quantum computers than RSA. All of these figures vastly exceed any quantum computer that has ever been built, and estimates place the creation of such computers as a decade or more away.</span>[citation needed] > > Supersingular Isogeny Diffie–Hellman Key Exchange provides a post-quantum secure form of elliptic curve cryptography by using isogenies to implement Diffie–Hellman key exchanges. This key exchange uses much of the same field arithmetic as existing elliptic curve cryptography and requires computational and transmission overhead similar to many currently used public key systems.<sup>~~~[44]~~~ > > <span class="fluo_green_bgnd">In August 2015, the NSA announced that it planned to transition "in the not distant future" to a new cipher suite that is resistant to quantum attacks. "Unfortunately, the growth of elliptic curve use has bumped up against the fact of continued progress in the research on quantum computing, necessitating a re-evaluation of our cryptographic strategy."</span> <a name="HigherSecurity"></a> ## Higher security: superposing encryption levels Whatever setup we have chosen now, if in the future we need a higher security level on some emails we can superpose one or more encryption steps. - **we create apart another key** (primary + subkeys), our correspondent does the same "apart" meaning possibly on *Tails* (see **Kleptography** [below](#Kleptography_NSA)), because *GnuPG* on *Tails* should undergo stricter auditing than for instance on *Ubuntu* and *Windows*[^moreEntropy], it could be an [air-gapped](#airGapped) computer or the keys could stay on a [hardware device](#keysInHardwareDevice) - **we encrypt apart** using *gpg* command line, with the --armor option - **we paste the result** of the encryption into our email body **or attach it** (in which case better avoid the --armor option not to unnecessarily inflate size), so our message will be **encrypted twice** with two different keys (or more than two). [^moreEntropy] Months ago I would have added: "... and because by default *GnuPG* on *Tails* adds to the randomness more entropy created from keyboard and mouse events". But I have recently created keys on *Ubuntu* (ver. 18.04.5 with *GnuPG* ver 2.2.4 and libgcrypt 1.8.1) to simply check the syntax of a few commands I've added to the [*gpg* appendix](#gpgExamples), and it's quite possible that the random generator was *waiting* for such events while giving out small chunks of the output sequence of the required size. This is not difficult at all, at least on any *Linux*-based machine (I can only guess that *gpg* takes the same command line syntax in *Windows*). Just check out the [appendix on *GnuPG*](#gpgExamples), especially [this part ](#EncryptingSigning). <a name="otherCommTools"></a> ## Other communication tools than email The "encrypt apart and attach or copy&paste" modus operandi opens the possibility to use *GnuPG* to add secrecy to other communication channels instead of e-mail, e.g. *Threema* via [web.threema.ch](https://web.threema.ch) or *Signal* via its desktop app (without forgetting that our smartphones are probably the least secure devices around), or maybe [Element](https://element.io/), which is mentioned in this [interesting page on privacytools.io](https://www.privacytools.io/software/real-time-communication/). Without forgetting that *GnuPG* doesn't support [forward secrecy](#forwardSecrecy). <a name="keysTheft"></a> ## Keys theft After plainly stealing my secret keys *from storage space*, the attacker should *crack* its encryption. I'm setting *strong passphrases*, but today's computers are increasingly fast (and keystrokes could be monitored/recorded). <a name="keysInHardwareDevice"></a> ## Keeping secret subkeys on a hardware device <div class="fluo_green_frame">**DISCLAIMER:** I'm not getting *any compensation whatsoever* from *Yubico* (alas LOL), I'm just sharing possibly useful info. This device happens to be the one I *bought*, I can't say anything about any others. </div> <p></p> <div class="fluo_green_frame">**CAVEAT:** Keeping secret subkeys on a hardware device is probably pretty good against keys theft and should grant that what's *signed* with your signing subkey is actually signed *by you*. **As for secrecy:** - again, the fact that they can't steal your secret subkeys prevents that they can use them elsewhere at will - **BUT** - your non-encrypted content is still on a non-air-gapped machine in some moment - your non-encrypted content is *passing to/from the hardware device through a USB port*, which could be the target of a bad USB exploit. So, again, I'm afraid that this is about odds and bets and actually guessing. And again: letting *Mailpile* manage your secret keys might also be a good bet after all, or not using a hardware device to keep your keys (lacking certainties, I'm offering a honest analisys, so you can at least *evaluate* what this is about). </div> To prevent **keys theft**, an increased level of security would be **a hardware device holding the secret subkeys**, hoping that the device has no back doors. Using a hardware device wouldn't necessarily prevent a [side channel attack](https://en.wikipedia.org/wiki/Side-channel_attack)... or it possibly would on older PCs, provided they're not phisically exposed to anybody else but the owner. Personally, after reading plenty of articles and posts in forums about discoveries of vulnerabilities apparently built in on purpose, I tend to think that the most recent is the hardware you buy from certain brands the most likely it is to come prepared with all sort of tricks to steal your data. On a *Yubikey 5 NFC* (or *Yubikey 5 Nano*) you'd have to type in the device PIN[^Yubikey5PIN] only once in a while[^newFunctionRequiresTouch] *and* touch its sensor button (or touch sensitive part) for *any* single operation required from it. Disabling this request would decrease the level of security against remote hackers, who might possibly be able to decrypt, encrypt or sign something with your secret subkeys, but still, they wouldn't be able to steal them. [^newFunctionRequiresTouch] As far as I can tell (I haven't dug): you are asked the PIN each time you use another subkey, or if many hours – possibly configurable – have elapsed since the last time you used that subkey (I don't know if keeping using it would extend the grace period indefinitely). For instance, if you have typed in the device PIN to *sign* something, you have only unlocked the use of the signing subkey. If right afterwards you want to use another subkey, e.g. to decrypt, you'll be asked the PIN again. After having enabled each function, the device can stay ON for quite a few hours – if you wish so – and later perform more such operations only requiring your touch on the sensor button. <div class="fluo_green_frame">I've given a try at this *Yubikey 5 NFC* with *Mailpile* and it works fine (actually *Mailpile* works with *GnuPG* which in turns handles the *Yubikey* nicely). **Unfortunately** the device can only hold one PGP credential.[^upTo3subkeys] If you need *separate* email accounts, you'll have to choose one and keep your other secrets in the gpg keyring as usual. If you don't care if the same *GnuPG* keys are used with various email accounts/addresses, then plenty of tutorials out there will tell you how to use *GnuPG* on the command line to add more than one user id to the same key (basically `gpg --edit-key <keyID>` then `adduid` then `save`). Or you can use the key you store on the hardware device as described above, as [an additional encryption level](#HigherSecurity), pasting/attaching to an email which is *also* going to be encrypted with the key associated to that account. (A higher security level would be encrypting and decrypting on an [air-gapped](#airGapped) machine with keys which secret part never leave that machine, they'd only be stored in the encrypted USB flash drive from which you exclusively boot that machine, and possibly in its backup copy also "touching" only the air-gapped machine.) </div> [^Yubikey5PIN] It can actually be an alphanumeric passphrase up to 127 characters long, if the information I recollected is correct. [^upTo3subkeys] With up to three subkeys, which means that it could also be used to authenticate in SSH connections, but as I just said, it can only hold one PGP credential (it can hold up to 25 credentials or infinite number of credentials of other standards of which I'll use zero to three credentials at most). <a name="CreatingKeysMovingToHwDevice"></a> ### Creating keys and moving them to the hardware device Here you have a couple of tutorials I read for this *Yubikey 5 NFC*: - [**Use A YubiKey For PGP Signing, Encryption, And Authentication** — The Polyglot Developer](https://www.thepolyglotdeveloper.com/2019/02/use-yubikey-pgp-signing-encryption-authentication/) - [**How to use GPG with YubiKey (bonus: WSL 1 and WSL 2)** — The Coding Nest](https://codingnest.com/how-to-use-gpg-with-yubikey-wsl/) A summary of the workflow I followed: - I also created these keys+subkeys apart, as usual, not on the machine I use online. And **I didn't let the *Yubikey* create any *PGP* keys** because otherwise there would be no way to have a backup, as the device is supposed to never give out your secrets.[^MCU] - Then I only exported the secret subkeys (not the primary key) with something like this: gpg -o SECRET_SUBKEYS --export-secret-subkeys my_email@addr.ess - Still on the offline machine, I imported them into another keyring (probably an unnecessary precaution), something like this: ``` cd mv -i .gnupg .gnupg_before install -d -m 700 .gnupg gpg -k gpg --import SECRET_SUBKEYS ``` - Still on the offline machine, **following the two tutorials mentioned above**: - **I setup strong PINs** (actually passphrases) on the *Yubikey* (closed cameras around, accurately wrote on paper first, no cameras around, and typed after) - I moved those secret subkeys to the *Yubikey* and set it as follows: - Sensor button touch required to encrypt/decrypt/sign - NFC disabled for *all* credential types, it means Near Field Communication, because: - my smartphone doesn't support it - I think I won't buy another [fourth] Android phone *ever again*, after the tracking-you-as-per-Trilateral-Commission-under-Covid-19-pretext API was installed without asking for permission - Entirely disabled support for credential types I'm not using - I exported the *public* key and moved only the *public* key to the machine I use online, with something like this: `gpg -o PUBLIC_KEY --export my_email@addr.ess` - Finally I *only* imported the public key into the *GnuPG* keychain on this actual destination machine, hence it could never see those secret subkeys: `gpg --import PUBLIC_KEY` - After finishing it all, **back to the offline machine**: ``` cd srm -rf .gnupg mv -i .gnupg_before .gnupg ``` If using the [***Yubikey Manager***](https://www.yubico.com/products/services-software/download/yubikey-manager/)[^YubicoSignatures] is a problem on the offline machine, you can leave the last steps for the destination machine before going back online, but with the offline machine you'll have already set up on your *Yubikey* three strong PINs (or passphrases) after writing them down on paper (no cameras around), one for normal operations, one as admin, one to reset it and unblock it after submitting a mistyped PIN three times. (On the online machine, I'd uninstall the Yubikey Manager, just not to leave it there ready and tempting any intruding hackers to spend additional time messing around.) [^YubicoSignatures] It is good practice to check sensitive software you download with the developers' signatures. In this document you have [an appendix with examples of *GnuPG* usage](#gpgExamples) on a *Linux* terminal command line, also showing [how to create and verify detached signatures](#DetachSig). As it has [already been reported](https://github.com/Yubico/yubikey-manager-qt/issues/248), **in case any piece of software coming from *Yubico* has been signed with a key which hexadecimal ID you don't find on their [Software Signing page](https://developers.yubico.com/Software_Projects/Software_Signing.html)**, you can search for that ID here [**https://keys.openpgp.org/**](https://keys.openpgp.org/) where you should find a primary key ID and a name. Then, you check that the name and key ID are actually listed on their [**Software Signing page**](https://developers.yubico.com/Software_Projects/Software_Signing.html). (Maybe *Yubico* staff will improve this aspect of their website as suggested in that GitHub issue and you won't have to lose extra time when verifying any of their signatures.) It looks more complicated than it is (of course it requires attention). <span class="fluo_green_bgnd"><a name="amIBeingTooParanoid"></a>**Am I being too paranoid?**</span> **I *was* believing so, before coming to know what's mentioned below about ["air-gapped"](#airGapped) (especially [this part](#BeamAndCoating) of [this footnote](#neverTooParanoid)), and before what happened days ago, two different "weird" facts in the same day:** <a name="hackersVisit_symptomA"></a> #### Possible attack, symptom A <span class="fluo_green_bgnd">Hours after a successful operation, I found the *Yubikey*'s PIN blocked</span>, supposedly meaning that 3 attempts with a wrong PIN had been made (but of course I hadn't omitted setting up different PINs/passphrases than the default ones). <a name="UnblockingYubikey"></a> ### Unblocking the *Yubikey* after repeated introduction of the wrong PIN/passphrase In such cases, here is how to unblock the device normal operations PIN (that's what I did with this *Yubikey*). <p class="fluo_green_frame">EACH ONE OF THE FOLLOWING COMMAND LINES HAS TO BE TERMINATED WITH THE \<ENTER\> KEY.</p> ``` gpg --edir-card admin help ``` choose the menu item which enables you to unblock the normal PIN using the reset one, with this *GnuPG* version (2.2.4): ``` unblock ``` to exit: ``` quit ``` Now, I'm keeping the device plugged into **a HUB with real mechanical switches to cut power to any of its USB slots**. The idea is to leave that switch off unless necessary. Apparently, the device works just fine also via the HUB, I've tested signing some 1.9 GB files and it worked flawlessly. If you do that, ***before* you try to use the *Yubikey*, be sure that its USB slot is switched ON**.[^forgotToSwitchOnHUBslot] [^forgotToSwitchOnHUBslot] Actually, **if you forget** to switch on the HUB slot before trying to use the *Yubikey*, you are normally simply invited to plug in the device. So far (about 40 days of everyday usage), only twice I went into a bit of a trouble and kept getting errors from *GnuPG* after switching the slot on. **In case**, try unplugging the HUB from your PC and plugging it in again (*or* plugging the *Yubikey* into a non-HUB USB port, using it once, then back to the HUB, but I think the first one is the way to go, at least on this *Linux* PC). <a name="hackersVisit_symptomB"></a> #### Possible attack, symptom B [**The same day**](#hackersVisit_symptomA), <span class="fluo_green_bgnd">I couldn't eject an USB flash drive, *Linux* kept warning that the device was busy</span> while I was closing anything else. Finally, it turned out that I could unmount it with no warnings only after closing the last thing I would have deemed responsible, <span class="fluo_green_bgnd">the *Firefox* browser instance I had been using to surf the web</span>, despite the fact that I hadn't accessed that USB flash drive at all from Firefox and despite having launched *Firefox* inside firejail (I'll have to review the apparmor and firejail profiles). <span class="fluo_green_bgnd">**Apparently, you are never too paranoid.**</span> And **BTW:** <a name="separateFirefoxInstance"></a><div class="fluo_green_frame">I use a separate *Firefox* instance to connect to *Mailpile*, I do not surf the web *and* connect locally to *Mailpile* with the same *Firefox* instance. The one-line bash script I use to launch *Firefox*: firefox -ProfileManager -no-remote -new-instance "$@" If you are running out of RAM space, you might possibly save a bit of it by omitting the -no-remote option, with **decreased security level** though. Supposedly more secure: firejail firefox -ProfileManager -no-remote -new-instance "$@" Or you could use a browser, e.g. *Vivaldi*, to surf the web and another, e.g. *Firefox*, to connect to *Mailpile* on your computer, or the other way around. </div> [^MCU] It contains a microcontroller who is supposed to do all operations. I want to believe that these devices are so highly audited and kept under observation worldwide that putting a backdoor into them would be highly risky for who did it, legally and not, and for a whole lot of countries by now. *Yubico* however, if I've read correct information, admitted some kind of vulnerability of a "FIPS" series which was actually supposed to have some stronger US Federal certification, and retired the vulnerable model replacing it for customers. <a name="KeepingSecretsStoredApart"></a> ## Keeping secret subkeys stored apart and making them available when necessary I've also tested ***not* keeping in the *GnuPG* keyring the keys for the accounts I've configured in *Mailpile* until necessary**. Luckily, *Mailpile* does not complain about a symlinked ~/.gnupg folder (*GnuPG* detects keyring changes and asks for your passphrases again). My conclusion for now, for this trick not to have *Mailpile* complain and possibly create new keys if you pass through the settings of an account (even if only servers related settings): <div class="fluo_green_frame">When *Mailpile* is running, keep in the keyring *at least* the *public* keys of the accounts you have configured in *Mailpile*. Before modifying an account settings – and obviously before doing anything requiring signing, encrypting, decrypting – make the secret keys available.[^forgotToMakeSecretKeysAvailable] </div> [^forgotToMakeSecretKeysAvailable] **If you forget to make secret keys available before opening an encrypted message**, *Mailpile* might later remember that it had no suitable secret keys to decrypt it, despite the fact that afterwards you might have made those keys available and sometimes even despite having shut down down and restarted *Mailpile*. In case, **try moving that message to another tag (and back if you need)**. Once, so far, that has not worked here. (Opening the Security settings of that account and pressing the ***Save*** button – after checking that the correct key was appearing – didn't solve it either.) But **I was able to decrypt that email again – and see it "green" again – minutes later after sending another email using the same secret keys**. <a name="OverYourShoulder"></a> ## Over your shoulder <u>**Remember:** apart the chance that the encryption scheme itself gets compromised in the future, or your keys get stolen and their passphrase cracked, there's also the chance that your computer itself might be compromised, with somebody watching "over your shoulder", no matter how secure your login and keys passphrases are.</u> Of course it also depends on the level of security you need. Protecting from common criminals is not the same as being a journalist whose sources are up against 9-11'ers. But at least *slowing down* possible bad guys in general is an important step that worldwide citizens should all take. You might also need to warn someone, e.g. police forces somewhere in the world, that by analyzing certain news it seems possible that something bad might happen, and you would not want to risk giving out that idea to the bad guys in case it turns out that they hadn't actually thought about it. But it doesn't look like police forces in general, as well as journalists in general, are nowadays "encryption aware" (not that mainstream journalists are up against the "biggest" bad guys around, anyways, it looks more like the opposite... but I was thinking about *real* journalists). <a name="airGapped"></a> ## "Air-gapped" Staying offline while decrypting and reading a message doesn't guarantee that it will remain secure once you get back online, even if you have securely deleted the unencrypted message. The same consideration is valid for any password you type on your computer, even if used locally. Edward Snowden was asking Glen Greenwald to only decrypt/encrypt on an air-gapped machine certain messages. That could be for instance: - an old laptop booting *Tails* from a USB flash drive - never again to be connected to any other machine or directly to the Internet - from which you will have pulled out the WiFi module - no USB devices to be shared ever with other machines - data only passing screen-to-cam with QRcodes or via CD/DVD - shielded room = better, radio waves could vehicle not only information but also malign code (too paranoid?[^neverTooParanoid]) - <a name="phonesWithFMradio"></a>smartphones with FM radio to be kept as far as possible or in a metallic box [^neverTooParanoid] I <a name="neverTooParanoid"></a>find it interesting to analyze and progressively adopt better habits (keeping in mind that our devices and OS'es are so insecure), as if I were handling something worth anybody's efforts to steal or alter, like industrial or military secrets, or the communications of a congressman or minister. The more I know, the more I'm convinced that **you're never too paranoid**. Just consider: - **Kleptography**, developed [above](#Kleptography_NSA), while here we can elaborate on: - **Radio <a name="BeamAndCoating"></a>communications.** Here are a few lines from "The Perfect Weapon (2020)" (in my opinion an interesting piece of Russophobic Chinophobic Iranophobic propaganda, possibly manufactured by the Deep State / NWO powerful media producing facilities, with a limited hangout when it recognizes "<u>*we*</u> started the cyber war"): At about 3min44s, telling about the StuxNet computer virus: > John Hultquist: the plan was a piece of malaware would be delivered into the industrial control systems running the Iranian nuclear program. > > Michael Riley: this network was <span class="fluo_green_bgnd">air gapped</span>. In other words, it's not connected to the internet. > So you had to have ways in which the code could jump onto those computers. > > Sanger: > there's still some mystery about exactly how this code > made it from the nsa and the israeli cyber unit > into the natanz plant. > There are many ways, including slipping in a usb key. > But we also now know that <span class="fluo_green_bgnd">the NSA had designed a brilliant small system, about the size of a briefcase, that could work from six or seven miles away, beaming computer code into a computer that had been set up with a receiver chip. > And that device could be used not only to put code in, but later to replace it and update it.</span> > > Hultquist: once they got in, the code started unlocking itself, and it started two major tasks. > The first one was to record everything that the operator would be saying, and essentially, put that on a loop. > So that every day, when the operator came in to work, everything would look just fine. > It's sort of like a classic heist movie where the surveillance video is run on a loop, and the guard never knows what's actually going on. While at the same time, somebody's breaking in and stealing something. > The iranians were thinking the whole time that they're making progress, that they're moving towards their goal, when in fact, these systems are deadlined. > Because the second task for the code was to take the centrifuges and break them. At about 1h15m50s, telling how they analyzed photos found hacking a chinese PC: > There was a picture of this big white building behind him, that had huge antennae dishes, had <span class="fluo_green_bgnd">reflective coating on the windows, that would prevent signal interception</span>. As for the question "am I being too paranoid?", apart from radio waves, I had already mentioned a [blocked *Yubikey* PIN](#hackersVisit_symptomA) and a [firejailed *Firefox* instance engaging a USB flash drive](#hackersVisit_symptomB). Why the last point? Quote from [**​How to Build a Raspberry Pi FM Transmitter** – Circuit Digest](https://circuitdigest.com/microcontroller-projects/raspberry-pi-fm-transmitter): > <span class="fluo_green_bgnd"">Every microprocessor will have a synchronous digital system associated with it which is used to reduce the electromagnetic interference. This EMI suppression is done by a signal called Spread-spectrum clock signal or SSCS for short. The frequency of this signal can vary from 1MHz to 250MHz</span> which luckily for us falls within the FM band. So by writing a code to perform frequency modulation using the spread-spectrum clock signal we can tweak the Pi to work as a FM transmitter. <span class="fluo_green_bgnd"">If it can transmit radio frequency in a controlled manner, it can transmit data as well (with FM modulation or not).</span> When it comes to hardware, I tend to think: - "more recent" = "more chances that the hardware has been prepared for certain tricks" (sad to say, also considering energy consumption) - certain manufacturers of CPU and chipsets are named more frequently than others in the reports of vulnerabilities which seem to have been built in on purpose, I guess if you follow the money you find out that certain State actors are involved, and I'm not thinking China - it's plausible that the radio-waves related "vulnerabilities" are not discovered as frequently as others, or not until too late (see this [previously inserted footnote](#neverTooParanoid)) **Closing any sensitive piece of paper before opening any cameras around is a necessary precaution, also for any not air-gapped setup.** <a name="Kleptography_NSA"></a> <div class="fluo_green_frame">**ATTENTION:** encrypting/decrypting staying air-gapped might not prevent certain tricks, for instance: **Radio communications:** see [just above here](#phonesWithFMradio) and again this [previously inserted footnote](#neverTooParanoid). **[Kleptography](https://en.wikipedia.org/wiki/Kleptography):** for instance **not a truly random or pseudo-random generator at the moment of the creation of your keys**. The NSA was accused to have pushed a tricky algorithm as a commercial standard. [**Dual_EC_DRBG** – Wikipedia](https://en.wikipedia.org/wiki/Dual_EC_DRBG) > [...] In 2013, The New York Times reported that documents in their possession but never released to the public "appear to confirm" that the backdoor was real, and had been deliberately inserted by the NSA as part of its Bullrun decryption program. In December 2013, a Reuters news article alleged that in 2004, before NIST standardized Dual_EC_DRBG, NSA paid RSA Security $10 million in a secret deal to use Dual_EC_DRBG as the default in the RSA BSAFE cryptography library, which resulted in RSA Security becoming the most important distributor of the insecure algorithm. [...] This is why I've written "I _may_ choose", "I'd still choose...", <span class="fluo_green_bgnd">of course I feel uncomfortable when opting for RSA4096 after reading this</span>. I'd be *willing* to at least *hope* that these algorithms are somewhat audited by knowledgeable persons worldwide, which is probably why they got caught... although *years later*, but the truth is: <center><big>**I don't know**</big></center> <span class="fluo_green_bgnd">For important messages, we might want to **[superpose encryption levels](#HigherSecurity) made with keys of different types.**</span> Are "RSA Security" really the guys who created the RSA standards used by *GnuPG*? [**RSA Security** – Wikipedia](https://en.wikipedia.org/wiki/RSA_Security) > [...] RSA is known for allegedly incorporating backdoors developed by the NSA in its products. [...] Yes, it's definitely them. Well, if I were a lawyer, I'd probably think that opting for RSA4096 as the basic key associated to an account, in case of any backdoors at least they wouldn't exploit my customer's messages legally, because that would make public the existence of a backdoor. Also, I don't know if there wouldn't be any backdoors with EdDSA or any other standard. To be fair, however, I think these algorithms and their implementation is open to auditing by anyone having the time and knowledge to do it... and *GnuPG* binaries can be [downloaded](https://www.gnupg.org/download/index.html) with [signatures](#gpgExamples) (it seems to be kind of circular, using *GnuPG* to verify *GnuPG* pre-compiled binaries, but you might use an audited version to verify the signature on the new one, at least you know that it is what the developers published). </div> Moving data air-gapped <=> not air-gapped is a PITA of course, given that USB is a big no no.[^badUSBexploit] The smaller the data file is, the faster it is to pass it screen-to-cam fragmented in QRcodes (I've made myself a couple of scripts which do that, TX/RX screen-to-cam). More than a few tens of kBytes => it's probably faster to burn a rewritable CD or DVD. [^badUSBexploit] Apparently, the hardware of USB ports is too flexibly reprogrammable, it can be used to steal information (maybe it's more difficult with *encrypted* USB volumes). Such attacks go under the common denomination of "bad-USB exploit". <a name="PerfectlySuitable"></a> ## *Mailpile* perfectly suitable if you also need to decrypt/encrypt apart **You might check out the [appendix with examples of *GnuPG* usage in a *Linux* terminal window](#gpgExamples).** It's easy to add to a *Mailpile* message some data encrypted apart, you can simply attach the encrypted file to your email. If your encryption result is in ASCII format, you can also paste it into the email body, but in case it is a long message, the extraction of your encrypted data to be decrypted offline might not be straightforward, depending on your correspondent's skill level and email client. ***Mailpile* is perfectly suitable for the "extraction" of a message that you might need to decrypt apart possibly after having moved it to another machine.** Its Command Line Interface enables to **export** more than one message at a time, you might want to check out the specific [section](#Mailpile_CLI) of this document about that. The GUI enables to easily save a message body or the whole message format. <a name="saveMessageBody"></a>You can save the message body to your browser downloads folder, after activating ***Display HTML formatted message content***: <a name="imageWithEyeIconFrame_A"></a>*image 16b* ![img 16b](pictures/mailpile__img_016b.jpg) *(About the picture: a few days have passed since I took the other snapshots in this tutorial, I've received a few more emails and I might have added a couple of tags.)* Or if you need the email source code with its entire format, you can **hover** the mouse cursor as in the following picture to reveal more functionalities: <a name="imageWithEyeIconFrame_B"></a>*image 16c* ![img 16c](pictures/mailpile__img_016c.jpg) **Clicking that small hammer icon**, which mouse hover hint says ***Display message source code***, will open a new tab in your browser, with the whole message as received. You can then save that tab content to a file (ctrl-s with *Firefox* in English). </div>
90.920078
737
0.760859
eng_Latn
0.998565
8a04766ef37ab26404cce54222b6b51027b151bb
69
md
Markdown
README.md
SKOMOBO/raspi
9e867b1fe8f8bc8d13193dc4092ba23651c65ba2
[ "MIT" ]
null
null
null
README.md
SKOMOBO/raspi
9e867b1fe8f8bc8d13193dc4092ba23651c65ba2
[ "MIT" ]
null
null
null
README.md
SKOMOBO/raspi
9e867b1fe8f8bc8d13193dc4092ba23651c65ba2
[ "MIT" ]
null
null
null
# raspi This is the code for the raspberry pi in the SKOMOBO project
23
60
0.782609
eng_Latn
0.999841
8a04906382d541ce1b3270f779789d0a069f7484
1,278
md
Markdown
diagnoos.md
alvatal/kysi-mult-linuxit
4802232916dce7ef96ccbf36f25d2ce2cd8cebbb
[ "CC0-1.0" ]
null
null
null
diagnoos.md
alvatal/kysi-mult-linuxit
4802232916dce7ef96ccbf36f25d2ce2cd8cebbb
[ "CC0-1.0" ]
null
null
null
diagnoos.md
alvatal/kysi-mult-linuxit
4802232916dce7ef96ccbf36f25d2ce2cd8cebbb
[ "CC0-1.0" ]
null
null
null
--- layout: page title: Diagnoos --- Rohkem kui 85% kasutajatest on arvutis tasuline opsüsteem [Microsoft Windows](http://windows.microsoft.com/et-EE/windows/home): * Lisaks tasulisele opsüsteemile pead eraldi hankima viirusetõrje, kontoritarkvara, ID-kaardi tarkvara jne. * Arvuti vajab viiruste ja muu süsteemi koguneva rämpsu tõttu tihti hooldust. * Opsüsteemi uued ja täielikumad versioonid on samuti tasulised ja sa ei või paigaldada süsteemi korraga paljudesse arvutitesse. * Arvutimüüjad ja opsüsteemi tootja toidavad üksteist müües sulle üha ja üha uusi versioone tarkvarast ja selle jaoks vajalikku uut riistvara. Mõtleval vähemusel on opsüsteemiks mõni paljudest tasuta Linuxi opsüsteemidest, näiteks [Estobuntu](estobuntu.html): * Süsteemis on kohe olemas kontoritarkvara koos eesti õigekirjakontrolliga, ID-kaardi tarkvara, kõik vajalikud multimeediavahendid ja palju Eesti-spetsiifilisi lisasid. * Pole vaja viirusetõrjet, defragmenteerijat, süsteemi rämpsust puhastajat ega muid tehnilisi tööriistu. * Opsüsteem on eestikeelne ja tasuta, võid seda paigaldada nii palju kui tahad ja sellega ei tule kaasa äriplaani sinu kukru kergendamiseks. Tahaksid Linuxit proovida, aga pole endas kindel? Meil on sulle [mõned julgustavad sõnad](kysi-mult.html).
44.068966
104
0.816901
est_Latn
1.000006
8a0490dacb912ad85ea7674c35baf085a65226a3
13,209
md
Markdown
content/2018/romainl-dont-use-vim.md
puremourning/vimways.org
7f871f29fcc64e708eec9eef4785aa7438a2b7ed
[ "MIT" ]
218
2018-08-26T22:17:41.000Z
2022-03-03T21:02:11.000Z
content/2018/romainl-dont-use-vim.md
BocanceaIonut/vimways.org
10717da3917002feeb29c20622ed90201cb5b7e1
[ "MIT" ]
62
2018-08-26T18:48:36.000Z
2021-08-29T16:26:02.000Z
content/2018/romainl-dont-use-vim.md
BocanceaIonut/vimways.org
10717da3917002feeb29c20622ed90201cb5b7e1
[ "MIT" ]
40
2018-12-01T14:29:35.000Z
2021-02-16T19:12:18.000Z
--- title: "Don't use Vim" publishDate: 2018-12-19 draft: true description: "Don't use Vim for the wrong reasons" slug: "dont-use-vim" author: name: "Romain Lafourcade" github: "romainl" --- > Don't do the crime, if you can't do the time. > > -- Anthony Vincenzo "Tony" Baretta Vim is an amazing text editor. I love it. Really, I wouldn't [organize][organize] a Vim advent calendar if I didn't. But, as amazing as it is, **Vim is not for everyone**. It can't solve all your problems, or be a TUI version of your favorite IDE, or make you a better programmer, or land you that dream job in the Bay Area, but Vim *can* help you be more mindful, focused, and efficient, as long as you approach it with the right mindset. Don't get me wrong, I certainly welcome you to try Vim, but I'm not a proselyte. I don't strive on newbies. I just want *you* to use the right tool for the job and not waste *your*--and anyone's--time on a fruitless quest. ## Don't use Vim… ### if you think you can get the features of your IDE without the weight and the sluggishness While some recent advancements may hint at future changes in that direction, Vim currently lacks everything it would need to be considered/used as an IDE. From sketchy terminal integration, to being single-threaded, via the lack of anything resembling a proper internal plugin API, nothing in Vim can be leveraged to give you a convincing **Integrated** Development **Environment**. From the user's point of view, an IDE is mostly a smart text editor with a bunch of utility windows tacked on. After all, the editor is the largest window, right? If that's all you see in your IDE then I guess you can be excused for believing all those "Vim as a $LANGUAGE IDE" posts from years ago. Sadly, that's not how an IDE works *at all*. How it works, and the way it is architectured, can't currently be replicated in Vim. The best you can get is something that looks like your IDE--an editor window with tacked-on utility windows--if you squint hard enough, but you won't get a true IDE. Additionally, IDEs are not bloated and sluggish and hungry for RAM and disc space because their developers are sloppy or whatever. They eat resources and threads because they do *a lot*. Strip away everything that makes them IDEs and you get a lightweight editor. Add random incompatible IDE features to a lightweight editor that's not at all designed for that and you get a resource-hungry monster. If you need IDE features, use an IDE. ### if you want an experience entirely focused on your technology stack Vim has quite the history with C but, other than that, it's not particularly suited for anything specific like Front-end development, or Scala, or statistics, or functional programming, etc. It's a fine plain text editor that comes with minimal support hundreds of languages out-of-the-box and can be extended with many plugins of varying quality if the built-in features and your own customizations don't cut it. But don't pay attention to claims that "Vim is the perfect $LANGUAGE IDE": they are usually followed by long lists of plugins that never work well together and often replicate built-in features the people behind those claims don't even knew about. You can develop large C++ applications, work on React apps, build Go microservices, or write your CS thesis with Vim, and even have fun doing it, but thinking about Vim as a specialized C++/React/Go/LaTEX editor would be counterproductive. ### if you think it's everywhere Vim *can* be compiled for almost every platform/OS/hardware combination but it *is not* everywhere; hell, it's not on Windows, for starter, and Windows is the most widely used OS. Vim is a vi clone and the whole justification for shipping your UNIX-like OS with a vi clone is that you want to ensure *partial* [POSIX][posix] compatibility. Most Linux distributions use Vim for that while a few have been using vi since its legal status has been cleared. On BSD you generally get Nvi. On minimalist distributions used for embedded devices or containers you get [BusyBox vi][busybox-vi]… Also, your new favorite editor can be compiled with different features, sometimes--but not exclusively--grouped in meta features called "Tiny", "Small", "Normal", "Big", and "Huge", and the Vim you get by default, if any, is rarely the full-fledged version you would expect. Clipboard support, for example, is a pretty basic feature that is never built-in in default Vim and doesn't exist anyway in vi or Nvi. What's (not) "everywhere" is slightly different interpretations of [the standardized feature-set of vi][the-standardized-feature-set-of-vi], and vi is far from having all the bells and whistles that attracted to Vim in the first place. ### if you need to get up to speed in an afternoon The learning curve is *real* and the productivity hit of learning Vim on the spot is even realer. It will take days to internalize the most basic stuff taught to you in `$ vimtutor` and it will take weeks or months to reach your previous productivity level. If you are serious about learning Vim, I recommend doing it on the side, progressively, without taking any of the shortcuts you would be tempted to take if you had to learn it on the spot. If you are in a hurry, use a familiar editor/IDE. ### if you only care about street credibility If you are here because of fancy screenshots and the desire to look cool and belong to what you *believe* is an elite community then go away. That's a shallow attitude and the amount of time and effort required to even become a passable vimmer is guaranteed to turn you off sooner or later. Vim is only *one* tool among *many* for editing text and **no one** cares about it beyond our little coterie. And even then, most of us treat Vim as a power tool, not as a badge. ![Urinal etiquette][urinal-etiquette] Your next recruiter, your next colleagues, your next crush won't care about Vim. Vim is not cool and you are not cool for using Vim. ### if you can't afford the time and effort it requires to learn it It will take time to feel comfortable and it will take more time to feel comfortable enough that you don't think about reaching to your previous editor. We are talking months before you can work at least as efficiently as before. Can you afford that? Are you OK with the idea of reading the fucking manual? Or are you on a hurry to show off your eliteness to your coworkers and you don't have time to waste on boring reading? Vim is a very powerful text editor that exposes an incredible breadth and depth of functionalities. Learning everything would take a lifetime and learning what you need *right now* takes months. If you lack the curiosity and the drive required to go past those months, then you should keep using your current text editor. In general: if you are used to $FOO and consider switching to $BAR, learn $BAR before actually switching to it. ### if you are not ready to change your habits and workflow Vim is different. It has modes, it has commands all over the keyboard, it has tabs that are not tabs, it has different shortcuts than what you are used to, it lacks basic features and comes with incredibly useful ones no one knows about, it's a TUI, it's incredibly dumb and incredibly smart at the same time, it puts you in the driver seat, it uses its own weird language for extension, it's old and buggy, etc. The features you are used to may or may not be built-in or they may or may not require a plugin--or three. The way you are used to handle files may or may not match with Vim's built-in file navigation features. In any case, forcing your usual features and behaviors into Vim is an exercise in futility. You will get more value from learning it properly and leveraging its built-in features than from replicating your previous workflow. An example of thing you might want to adjust to rather than fight against would be "tabs": Vim's tabs, called [tab pages][tab-pages], don't work like other editor's tabs *at all*, so your usual tab-centric workflow *must*, at the very least, be changed to a buffer-centric one. Besides, if you don't want to change your habits, why change editors in the first place? ### if the job can be done better with another tool `sed`, `awk`, `cut`, a quick bash one-liner, a simpler editor, an infinitely more powerful IDE, an actual IRC or mail client, an actual presentation program, some online CSV-to-JSON converter... specialized tools are very often better alternatives to Vim. Even pen and paper (or marker on whiteboard) can be better for many uses. Yes, you have reached the *"Vim everywhere for everything"* but that's just a phase and you will get out of it, eventually. ## How to approach Vim ### Be open minded What's different between Vim and other editors is why you are here so you should keep that open mind throughout your learning. Some of what Vim does *will* feel weird at first but, if you cultivate the right mindset, everything will eventually fall into place. ### Be patient and mindful There's a lot to learn but there's no point whatsoever in learning *everything*… and there's no way to do that in a single-seating anyway. In fact people use Vim for 15 years and still learn new tricks regularly, when a new need arise or when they feel something they are doing could be improved. On that note, this advice from Bram Moolenaar's seminal ["Seven habits of effective text editing"][seven-habits-of-effective-text-editing] is absolute gold: > There are three basic steps: > > 1. While you are editing, keep an eye out for actions you repeat and/or spend quite a bit of time on. > > 2. Find out if there is an editor command that will do this action quicker. Read the documentation, ask a friend, or look at how others do this. > > 3. Train using the command. Do this until your fingers type it without thinking. ### Read and experiment Here are the three most important written resources to be aware of: 1. `$ vimtutor` is an interactive tutorial that teaches you the most basic concept. New users are expected to go through it as many times as necessary to internalize it as it covers everything a casual user should know. 2. The user manual is exactly what its name implies: a mandatory reading for every vimmer that touches on every feature present in your editor. Just read it if you don't like poking in the dark. Well, read it even if you do. 3. The reference manual contains everything about everything. Using it is easy and explained in the first scene of `:help`. Whatever question you might have on Vim has its answer here so… always ask Vim first. ### Ask And when the answer you got from Vim is puzzling or when you have tried something based on what you found in the manual doesn't work as expected, you can ask fellow users for help: * on [Reddit][reddit], * on [Stack Overflow][stack-overflow], * on [the vi and Vim stack exchange][the-vi-and-vim-stack-exchange], * on [#vim][#vim] on [Freenode][freenode]. In any case, be sure to prepare a minimum test case and explain what you are trying to do in order to avoid [the XY problem][the-xy-problem]. ## Parting words Vim is a complex program that lives in a bubble of its own. Its, shall we say, many peculiarities make it impossible to pick it up like one would pick Atom or Sublime Text up. Unlike those editors, Vim requires serious learning and unlearning before even being able to perform the slightest edit. Yes, it will take months before you use it more or less correctly and it will take decades to master it. Will it be worth it? I can't tell. It certainly has been worth it for me and many others while many more gave up or switched to other editors. Learning Vim, or any other powerful program like Photoshop or Blender, requires a patience and a discipline that not everyone can afford and that's OK because not everyone has to learn those things. *If you don't have the required discipline you won't reap the expected benefits.* --- _This work is licensed under a [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License][license]. Permissions beyond the scope of this license may be available by contacting the author._ [license]: https://creativecommons.org/licenses/by-nc-sa/4.0/ [organize]: ../romainl-dont-use-vim/organize.jpg [your-development-environment]: https://sanctum.geek.nz/arabesque/series/unix-as-ide/ [urinal-etiquette]: ../romainl-dont-use-vim/urinal-etiquette.jpg [posix]: https://pubs.opengroup.org/onlinepubs/9699919799/ [busybox-vi]: https://git.busybox.net/busybox/tree/editors/vi.c?h=1_29_stable [the-standardized-feature-set-of-vi]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/vi.html [tab-pages]: http://vimdoc.sourceforge.net/htmldoc/tabpage.html#tab-page [seven-habits-of-effective-text-editing]: https://moolenaar.net/habits.html [#vim]: https://www.vi-improved.org/faq/ [freenode]: https://freenode.net/kb/answer/registration [reddit]: https://www.reddit.com/r/vim/ [stack-overflow]: https://stackoverflow.com/questions/tagged/vim [the-vi-and-vim-stack-exchange]: https://vi.stackexchange.com/ [the-xy-problem]: https://en.wikipedia.org/wiki/XY_problem [//]: # ( Vim: set spell spelllang=en: )
82.043478
661
0.771595
eng_Latn
0.999556
8a04b597540ae692df97d12be664d308f4369e84
614
md
Markdown
README.md
musclecar289/v2c-dispatcher
da10dc02cd33b21480ca3aff2fd0beebe3a25277
[ "Apache-2.0" ]
null
null
null
README.md
musclecar289/v2c-dispatcher
da10dc02cd33b21480ca3aff2fd0beebe3a25277
[ "Apache-2.0" ]
14
2020-09-13T15:24:57.000Z
2020-10-10T19:48:19.000Z
README.md
musclecar289/v2c-dispatcher
da10dc02cd33b21480ca3aff2fd0beebe3a25277
[ "Apache-2.0" ]
2
2020-09-24T00:36:57.000Z
2020-11-17T21:35:10.000Z
# V2C Dispatcher *Copyright (c) 2020 V2C Development Team. All rights reserved.* ## Build You need Java 11. This project can be tested and compiled with the following command. `gradlew clean shadowJar` ## Execution To run it, just do `java -jar build\libs\v2c-dispatcher.jar`. You can optionally specify some command-line arguments. |Short Param|Long Param|Description |Default| |:----------|:---------|:--------------|:------| |-p |--port |The port number|2585 | ## License **This repository is subject to the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).**
25.583333
112
0.662866
eng_Latn
0.869043