Microsoft 365などOfficeをインストールすると一緒にインストールOutlookを使うことは多いと思いますが、起動して目にする項目で使わないものも多いと思います。 Outlookの使わない項目は非表示(削除)できるので、それで見た目をすっきりさせることができます。
まずOutlookを起動したら、キーワード [Alt] + [F11] の2つを同時に押します。
そうすると「Microsoft Visual Basic for Applicarions」というものが起動して表示されます。 左ペインの[Project 1]を右クリックして、[挿入]=>[標準モジュール]を押します。
表示された[Project 1 – Module 1]に下記の内容を貼り付けます。
Option Explicit
Public Sub HideFolders()
Dim oFolder As Outlook.Folder
Dim oPA As Outlook.PropertyAccessor
Dim PropName, Value, FolderType As String
PropName = "http://schemas.microsoft.com/mapi/proptag/0x10F4000B"
Value = %bool型%
Set oFolder = Session.GetDefaultFolder(%oldefaultfolders名前%)
Set oPA = oFolder.PropertyAccessor
oPA.SetProperty PropName, Value
Set oFolder = Nothing
Set oPA = Nothing
End Sub
%bool型% となっているところは下記の内容で置き換えます。 具体的には、非表示にする場合は Value = %bool型% を Value = True に書き換えます。
名前
説明
False
表示
True
非表示
%oldefaultfolders名前% となっているところは下記の内容で置き換えます。 具体的に、RSSフィードを操作する場合は Set oFolder = Session.GetDefaultFolder(%oldefaultfolders名前%) を Set oFolder = Session.GetDefaultFolder(olFolderRssFeeds) に書き換えます。
Mac向けOS仮想化ソフト VMware Fusion などでmacOSを仮想マシンとして稼働させることができますが、VMwareの場合は初期Diskサイズが40GBになっています。そのままOSセットアップして各種設定を行うと、Xcode 11やVisual Studio for Macをインストールすると、すぐに容量枯渇します。
user@yamahide-biz ~ % diskutil apfs resizeContainer /dev/disk1 0
Started APFS operation
Aligning grow delta to 43,083,890,688 bytes and targeting a new physical store size of 85,689,589,760 bytes
Determined the maximum size for the targeted physical store of this APFS Container to be 85,688,561,664 bytes
Resizing APFS Container designated by APFS Container Reference disk1
The specific APFS Physical Store being resized is disk0s2
Verifying storage system
Using live mode
Performing fsck_apfs -n -x -l -S /dev/disk0s2
Checking the container superblock
Checking the EFI jumpstart record
Checking the space manager
Checking the space manager free queue trees
Checking the object map
Checking volume
Checking the APFS volume superblock
The volume Macintosh HD - Data was formatted by hfs_convert (1412.81.1) and last modified by apfs_kext (1412.120.2)
Checking the object map
Checking the snapshot metadata tree
Checking the snapshot metadata
Checking the extent ref tree
Checking the fsroot tree
Checking volume
Checking the APFS volume superblock
The volume Preboot was formatted by hfs_convert (1412.81.1) and last modified by apfs_kext (1412.120.2)
Checking the object map
Checking the snapshot metadata tree
Checking the snapshot metadata
Checking the extent ref tree
Checking the fsroot tree
Checking volume
Checking the APFS volume superblock
The volume Recovery was formatted by diskmanagementd (1412.61.1) and last modified by apfs_kext (1412.120.2)
Checking the object map
Checking the snapshot metadata tree
Checking the snapshot metadata
Checking the extent ref tree
Checking the fsroot tree
Checking volume
Checking the APFS volume superblock
The volume VM was formatted by diskmanagementd (1412.61.1) and last modified by apfs_kext (1412.120.2)
Checking the object map
Checking the snapshot metadata tree
Checking the snapshot metadata
Checking the extent ref tree
Checking the fsroot tree
Checking volume
Checking the APFS volume superblock
The volume Macintosh HD was formatted by diskmanagementd (1412.61.1) and last modified by apfs_kext (1412.120.2)
Checking the object map
Checking the snapshot metadata tree
Checking the snapshot metadata
Checking the extent ref tree
Checking the fsroot tree
Verifying allocated space
The volume /dev/disk0s2 appears to be OK
Storage system check exit code is 0
Growing APFS Physical Store disk0s2 from 42,605,699,072 to 85,689,589,760 bytes
Modifying partition map
Growing APFS data structures
Finished APFS operation
user@yamahide-biz ~ %
Welcome to the HPE UPS Network Module
ups-98-F2-C6-75-3B-23 login: admin
Password:
ログオンに成功したら netconf -4 コマンドを実行すればIPアドレスが確認できます。
---------------------------------------------
Hewlett Packard Enterprise
Single Phase 1Gb UPS Ntwrk Mgmt Mod
Version 1.5.7
Connected from USB serial
This session will be automatically closed after 120 minutes or 15 minutes of inactivity.
Appropriate use:
(a) you are accessing a private or government system.
(b) this system usage may be monitored, recorded, and subject to audit.
(c) unauthorized use of this system is prohibited and subject to criminal and civil penalties.
(d) use of this system indicates consent to monitoring and recording.
---------------------------------------------
Welcome to the Command Line Interface
* To know the list of commands press [?]
* If you need help enter [help]
---------------------------------------------
admin@ups-98-F2-C6-75-3B-23> netconf -4
IPv4:
Mode DHCP
Address 192.168.253.18
Netmask 255.255.255.0
Gateway 192.168.253.1
admin@ups-98-F2-C6-75-3B-23>
MySQLをもともと開発していた人たちがOracle買収後に別のSQLとして開発しているMariaDBですが、インストールしてみると下記エラーが表示されました。 Service ‘MariaDB’ (MariaDB) failed to start. Verify that you have sufficient privileges to start system services.
イベントログを確認すると、アプリケーションにエラーが書かれています。一時ファイルを作成できないため、テンポラリーフォルダーなどを指定すれば解消できます。 InnoDB: Unable to create temporary file; errno: 0