IT and Network solution

بایگانی

۶ مطلب در دی ۱۳۹۴ ثبت شده است

استفاده از وردپرس بدون اینترنت

سه شنبه, ۱۵ دی ۱۳۹۴، ۰۹:۳۹ ق.ظ

بنده یک مشکل منحصر به فرد داشتم .و نیاز به نصب وردپرس برای استفاده در یک شرکت بصورت دسترسی داخلی داشتم و کاربران دسترسی به اینترنت ندارند.

 بر روی سیستمی که خودم دارم و اینترنت دارد نصب وردپرس و کار کردن با آن بخوبی است ، اما بارگذاری صفحات بر روی سیستمی که اینترنت ندارد فوق العاده آرام (اغلب، نزدیک به یک دقیقه به طول می انجامد


حدس من این بود که تماس های به وب سایت های خارجی ساخته شده باید قطع شود 


in wp-config.php
define('WP_HTTP_BLOCK_EXTERNAL', true);

This will prevent plugins from working and core functionality, so to allow them, add:

define('WP_ACCESSIBLE_HOSTS', 'api.wordpress.org');

If you have any other sites/services you want to allow, you can just add them comma-delimited:
define('WP_ACCESSIBLE_HOSTS', 'api.wordpress.org, site1.com, site2.com');




  • جلال شاهوند

معرفی سرویس Google Keep(دفترچه یادداشت)

شنبه, ۱۲ دی ۱۳۹۴، ۰۲:۱۱ ب.ظ

Keep روشی است رایگان تا هر کجا که باشید بتوانید افکارتان را ذخیره کنید. می‌توانید یادداشت‌ها و فهرست‌هایی را ایجاد کرده، به اشتراک بگذارید و با کمک دیگران روی آنها کار کنید.

ویژگی ها:
– نگه داشتن مسیر افکار خود از طریق یادداشت ها، لیست ها و عکس ها
– اضافه کردن یادآوری ها به نکات مهم و به یاد داشتن از طریق Google Now
– داشتن یادداشت های صوتی
– بایگانی یادداشت ها وقتی دیگر به آنها نیاز ندارید
– سفارشی کردن یادداشت ها با رنگ برای پیدا کردن سریع
– اضافه کردن یادآوری های مکان و زمان
– استفاده از یادداشت های خود را از هر نقطه
– افزودن یک یادداشت به یک چک لیست با اضافه کردن چک باکس
– و …


دانلود از سایت گوگل


  • جلال شاهوند

Download and extract RDPWrap-v1.6.zip (or newer), then run install.bat as admin. After installation is completed, run RDPConfig.exe. If all items under Diagnostics are green, you should be good to go.

If "Listener state" is "Listening [not supported]", you will need to update the wrapper's configuration (.ini) file.


حجم: 1.48 مگابایت
  • جلال شاهوند

دیدن مشخصات اسلات رم و مدل رم

شنبه, ۱۲ دی ۱۳۹۴، ۱۲:۲۶ ب.ظ
wmic /node:"Alizadeh-z" memorychip get BankLabel,Capacity,tag,status,speed,model

  • جلال شاهوند
wmic /node:"Hasani-l" PATH Win32_videocontroller GET description,adapterram,caption
  • جلال شاهوند

دیدن مشخصات مادربرد کلاینت از راه دور

شنبه, ۱۲ دی ۱۳۹۴، ۱۲:۱۲ ب.ظ

Windows 8 and 8.1 users can press Windows Key + x + a.  Alternately, in Windows 7, you can open an elevated command prompt by clicking the Windows orb in the lower left corner of the screen and typing:

cmd

Then just press Ctrl + Shift + Enter

Alright, once you have that going, throw in the following command:

Wmic baseboard get product, Manufacturer, version, serialnumber

WMIC Baseboard get product manufacturer version serialnumber

Here you can see my baseboard (motherboard) manufacturer is Lenovo and we have both the product and serial numbers too.

The magic behind the command starts with that wmic thingy.


 

wmic is an acronym for Windows Management Instrumentation.  It’s adored by scripting junkies and power users because it allows them to glean a cornucopia of facts about the system.

What kind of facts?

Last year, I showed you how to use wmic to get your Dell service tag but you can do so much more than that.

For example, if you want to get the dimensions of your computer monitor you can type

wmic desktopmonitor get screenheight, screenwidth

wmic desktopmonitor get screenheight, screenwidth

There are way too many wmic commands for me to list here but I just wanted you to get a feel for what you can do with this nimble command so you can pull it out whenever you need it.

If you’ve used wmic to get some interesting data about your system please share the goodies in the comments below!

  • جلال شاهوند