Skip to main content

How to access C$ (Remote Drive) Shared in a Network?

 Hi Readers,

In this blog we will see how we can access Remote Drive shared in a Network via Windows/Run.

Before using this, Here are few things to keep in mind:

  • Users must have admin rights.
  • The workgroup often has to be same on both machines for them to properly communicate.
  • Are you using Windows XP Professional edition, or another? (Home, Media Center, Tablet). This feature is only activated on Professional Edition.
  • Try enabling advanced sharing mode in XP. This is via Windows Explorer -> Tools Menu -> Folder Options -> Advanced (disable simple file sharing)

            For more info Refer this :- https://en.wikipedia.org/wiki/Administrative_share

Syntax:-  \\MachineName\Drive$

where MachineName & Drive are dynamic:

(1) MachineName denoted as IP Address like 170.21.11.9 or any other target machine.

(2)  Drive should be C,D or E which you want to access.

Example :-                                                 \\35.247.189.241\C$

In this example will see how to access C drive to copy some files from (35.247.189.241) RDP Server:

Step-1: Press Window + R (From system where you want to Paste Data/Files).

Step-2: Just type  \\35.247.189.241\C$ and Click OK button.


If all things are accurate and both servers are in same domain, Popup window will Open C Drive file Explorer.


I hope this will help you😊.

Stay tuned for more articles😃..

Comments

Popular posts from this blog

Flow Custom field to G/L Entry and other Posted tables : From Purchase Order to Posted Purchase invoice

Hi Readers, In this blog we will see how we can transfer data from " Purchase Header" to "Purchase Invoice Header" & "G/L Entry" table in Business Central. In this example, will create "Remarks" field on Purchase Header table and after posting, flow it to Purchase Invoice Header & G/L Entry tables: Firsly, create required fields ("Remarks") in below mentioned tables by creating table extensions: Purchase Header (38) Purch. Inv. Header (122) Gen. Journal Line (81)  G/L Entry (17) For the Purch. Inv. Header table, you can just create copy the field from purchase header and paste it in  Purch. Inv. Header  table. If the field ID No. is same for that field for both the tables then you don't have to code i.e, it automatically transfer that field data from Purch. Header to Purch. Inv. Header . Step-(1)   tableextension   50104  "Purchase Header Ext"  extends  "Purchase Header" {      fields   ...

Calculate Date : Using Date Formula and CalcDate Function in Navision/BC

 Hi Everyone, In this article we will see how we can Calculate Date by adding and subtracting No. of Days / Months based on CalcDate and DateFormula datatype. Here, I define three variables required for: (1) " No of Days " -  To define No. of Days / Months as required. You can also use these units denoted as: <Unit> = D | WD | W | M | Q | Y (D=day, WD=weekday, W=week, M=month, Q=quarter, Y=year). (2) " From Date " and " To Date "  Date type Variables to store calculated date in it. page   50103  "Date from Date Formula" {     PageType = Card;     ApplicationArea = All;     UsageCategory = Administration;     SourceTable =  Integer ;      layout     {          area( Content )         {    ...

The Txt2Al Conversion Tool: How to Export Dynamics NAV objects (.txt) and converting to AL

Hi folks, In this article, I will show you how you can use Txt2Al conversion tool that is the part of NAV 2018 and Dynamics 365 Business Central On-Premise. Using this Txt2Al conversion tool you can take existing Dynamics NAV objects that have been exported in .txt format and convert them into the new .al format and use these .al format file directly using Visual Studio Code to develop/build extensions for Dynamics 365 Business Central. Converting the NAV objects consists of following 2 steps: 1. Exporting the objects from C/SIDE [Either from Development Environment or using PowerShell Command] 2. Converting the objects to the new syntax. You can find Txt2Al tool in following location if you installed Dynamics 365 Business Central On-Premise on your machine: C:\Program Files (x86)\Microsoft Dynamics 365 Business Central\140\RoleTailored Client \Txt2Al.exe Steps to use the Txt2Al conversion tool:  Reference Step 1:  Compile your Dynamics NAV DB Step 2: ...